SubstringMatchCriteria.fromJson constructor

SubstringMatchCriteria.fromJson(
  1. Map json_
)

Implementation

SubstringMatchCriteria.fromJson(core.Map json_)
    : this(
        matchCase: json_.containsKey('matchCase')
            ? json_['matchCase'] as core.bool
            : null,
        text: json_.containsKey('text') ? json_['text'] as core.String : null,
      );