MainTextMatchedSubstrings.fromJson constructor

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

Implementation

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