SubstringMatchCriteria.fromJson constructor

SubstringMatchCriteria.fromJson(
  1. Map json_
)

Implementation

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