IntArray.fromJson constructor

IntArray.fromJson(
  1. Map json_
)

Implementation

IntArray.fromJson(core.Map json_)
    : this(
        elements: json_.containsKey('elements')
            ? (json_['elements'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );