toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final arguments = this.arguments;
final code = this.code;
final debugInfo = this.debugInfo;
final errorDetails = this.errorDetails;
final location = this.location;
final message = this.message;
return {
'arguments': ?arguments,
'code': ?code,
'debugInfo': ?debugInfo,
'errorDetails': ?errorDetails,
'location': ?location,
'message': ?message,
};
}