MatchRange.fromJson constructor

MatchRange.fromJson(
  1. Map json_
)

Implementation

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