toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final code = this.code;
  final debugDetails = this.debugDetails;
  final file = this.file;
  final warningLevel = this.warningLevel;
  final workarounds = this.workarounds;
  return {
    'code': ?code,
    'debugDetails': ?debugDetails,
    'file': ?file,
    'warningLevel': ?warningLevel,
    'workarounds': ?workarounds,
  };
}