Entry.fromJson constructor

Entry.fromJson(
  1. Map json_
)

Implementation

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