toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final caseSensitive = this.caseSensitive;
  final firstStepRequired = this.firstStepRequired;
  final matchType = this.matchType;
  final steps = this.steps;
  final url = this.url;
  return {
    'caseSensitive': ?caseSensitive,
    'firstStepRequired': ?firstStepRequired,
    'matchType': ?matchType,
    'steps': ?steps,
    'url': ?url,
  };
}