MatchedSubstring.fromJson constructor

MatchedSubstring.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory MatchedSubstring.fromJson(Map<String, dynamic> json) =>
    MatchedSubstring(
      length: json["length"],
      offset: json["offset"],
    );