MatchedSubstringGoogle.fromJson constructor

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

Implementation

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