$RawIndices.fromJson constructor

$RawIndices.fromJson(
  1. 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,
      );