toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final boolValue = this.boolValue;
  final dependentFieldValue = this.dependentFieldValue;
  final fieldId = this.fieldId;
  final matchType = this.matchType;
  final requestValue = this.requestValue;
  final stringValue = this.stringValue;
  final valueType = this.valueType;
  return {
    'boolValue': ?boolValue,
    'dependentFieldValue': ?dependentFieldValue,
    'fieldId': ?fieldId,
    'matchType': ?matchType,
    'requestValue': ?requestValue,
    'stringValue': ?stringValue,
    'valueType': ?valueType,
  };
}