MatchRange.fromJson constructor
MatchRange.fromJson(
- Map json_
Implementation
MatchRange.fromJson(core.Map json_)
: this(
end: json_.containsKey('end') ? json_['end'] as core.int : null,
start: json_.containsKey('start') ? json_['start'] as core.int : null,
);