toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final matchResponseCodes = this.matchResponseCodes;
  final overrideResponseCode = this.overrideResponseCode;
  final path = this.path;
  return {
    'matchResponseCodes': ?matchResponseCodes,
    'overrideResponseCode': ?overrideResponseCode,
    'path': ?path,
  };
}