toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

@override
Map<String, dynamic> toJson() => <String, Object?>{
      ...super.toJson(),
      'type': type,
      'kind': kind ?? '',
      'message': message ?? '',
      if (exception?.toJson() case final exceptionValue?)
        'exception': exceptionValue,
      if (stacktrace?.toJson() case final stacktraceValue?)
        'stacktrace': stacktraceValue,
    };