toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final boolMatch = this.boolMatch;
final doubleMatch = this.doubleMatch;
final listMatch = this.listMatch;
final nullMatch = this.nullMatch;
final orMatch = this.orMatch;
final presentMatch = this.presentMatch;
final stringMatch = this.stringMatch;
return {
'boolMatch': ?boolMatch,
'doubleMatch': ?doubleMatch,
'listMatch': ?listMatch,
'nullMatch': ?nullMatch,
'orMatch': ?orMatch,
'presentMatch': ?presentMatch,
'stringMatch': ?stringMatch,
};
}