toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final boolValue = this.boolValue;
final jsonPath = this.jsonPath;
final nullValue = this.nullValue;
final numberValue = this.numberValue;
final stringValue = this.stringValue;
final willContinue = this.willContinue;
return {
'boolValue': ?boolValue,
'jsonPath': ?jsonPath,
'nullValue': ?nullValue,
'numberValue': ?numberValue,
'stringValue': ?stringValue,
'willContinue': ?willContinue,
};
}