$RawIndices.fromJson constructor Null safety
- Map _json
Implementation
$RawIndices.fromJson(core.Map _json)
: this(
indices: _json.containsKey('indices')
? (_json['indices'] as core.List)
.map((value) => value as core.int)
.toList()
: null,
);