MatchedSubstring.fromJson constructor

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

Implementation

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