FieldFilter.fromJson constructor
FieldFilter.fromJson(
- Map json_
Implementation
FieldFilter.fromJson(core.Map json_)
: this(
boolValue: json_['boolValue'] as core.bool?,
dependentFieldValue:
json_.containsKey('dependentFieldValue')
? DependentFieldValue.fromJson(
json_['dependentFieldValue']
as core.Map<core.String, core.dynamic>,
)
: null,
fieldId: json_['fieldId'] as core.int?,
matchType: json_['matchType'] as core.String?,
requestValue:
json_.containsKey('requestValue')
? RequestValue.fromJson(
json_['requestValue'] as core.Map<core.String, core.dynamic>,
)
: null,
stringValue: json_['stringValue'] as core.String?,
valueType: json_['valueType'] as core.String?,
);