FloatingPointList.fromJson constructor
FloatingPointList.fromJson(
- Map json_
Implementation
FloatingPointList.fromJson(core.Map json_)
: this(
elements: json_.containsKey('elements')
? (json_['elements'] as core.List)
.map((value) => (value as core.num).toDouble())
.toList()
: null,
);