$StringFilter.fromJson constructor

$StringFilter.fromJson(
  1. 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,
      );