IntArray.fromJson constructor
IntArray.fromJson(
- 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,
);