toJson method
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,
};