$Entry.fromJson constructor

$Entry.fromJson(
  1. Map json_
)

Implementation

$Entry.fromJson(core.Map json_)
    : this(
        caseSensitive: json_.containsKey('caseSensitive')
            ? json_['caseSensitive'] as core.bool
            : null,
        replace: json_.containsKey('replace')
            ? json_['replace'] as core.String
            : null,
        search: json_.containsKey('search')
            ? json_['search'] as core.String
            : null,
      );