toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final argument = this.argument;
  final code = this.code;
  final debugInfo = this.debugInfo;
  final domain = this.domain;
  final externalErrorMessage = this.externalErrorMessage;
  final location = this.location;
  final locationType = this.locationType;
  return {
    'argument': ?argument,
    'code': ?code,
    'debugInfo': ?debugInfo,
    'domain': ?domain,
    'externalErrorMessage': ?externalErrorMessage,
    'location': ?location,
    'locationType': ?locationType,
  };
}