MainTextMatchedSubstrings.fromJson constructor
Implementation
factory MainTextMatchedSubstrings.fromJson(Map<String, dynamic> json) => MainTextMatchedSubstrings(
length: json["length"] == null ? null : json["length"],
offset: json["offset"] == null ? null : json["offset"],
);