toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (boolValue != null) 'boolValue': boolValue!,
  if (dependentFieldValue != null)
    'dependentFieldValue': dependentFieldValue!,
  if (fieldId != null) 'fieldId': fieldId!,
  if (matchType != null) 'matchType': matchType!,
  if (requestValue != null) 'requestValue': requestValue!,
  if (stringValue != null) 'stringValue': stringValue!,
  if (valueType != null) 'valueType': valueType!,
};