factory MatchRange.fromJson(Map<String, dynamic> json) { return MatchRange( end: json['end'] as int, start: json['start'] as int, ); }