StringFilter.fromJson constructor
StringFilter.fromJson(
- Map _json
Implementation
StringFilter.fromJson(core.Map _json)
: this(
caseSensitive: _json.containsKey('caseSensitive')
? _json['caseSensitive'] as core.bool
: null,
matchType: _json.containsKey('matchType')
? _json['matchType'] as core.String
: null,
value:
_json.containsKey('value') ? _json['value'] as core.String : null,
);