MatchRange.fromJson constructor

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

Implementation

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