Range.fromJson constructor

Range.fromJson(
  1. Map json_
)

Implementation

Range.fromJson(core.Map json_)
  : this(
      endIndex: json_['endIndex'] as core.int?,
      startIndex: json_['startIndex'] as core.int?,
      type: json_['type'] as core.String?,
    );