EntityRange.fromJson constructor

EntityRange.fromJson(
  1. dynamic json
)

Implementation

EntityRange.fromJson(dynamic json)
    : offset = json['offset'] ?? 0,
      length = json['length'] ?? 0,
      key = json['key'] ?? 0;