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