CloudExportAdditionalProperties.fromJson constructor
CloudExportAdditionalProperties.fromJson(
- Map json_
Implementation
CloudExportAdditionalProperties.fromJson(core.Map json_)
: this(
boolValue: json_['boolValue'] as core.bool?,
floatValue: (json_['floatValue'] as core.List?)
?.map((value) => (value as core.num).toDouble())
.toList(),
intValue: (json_['intValue'] as core.List?)
?.map((value) => value as core.String)
.toList(),
maxValue: (json_['maxValue'] as core.num?)?.toDouble(),
minValue: (json_['minValue'] as core.num?)?.toDouble(),
propertyName: json_['propertyName'] as core.String?,
textValue: (json_['textValue'] as core.List?)
?.map((value) => value as core.String)
.toList(),
unitCode: json_['unitCode'] as core.String?,
);