GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoDoubleFieldInfo.fromJson constructor
GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoDoubleFieldInfo.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoDoubleFieldInfo.fromJson(
core.Map json_)
: this(
average: (json_['average'] as core.num?)?.toDouble(),
max: (json_['max'] as core.num?)?.toDouble(),
min: (json_['min'] as core.num?)?.toDouble(),
quartiles: (json_['quartiles'] as core.List?)
?.map((value) => (value as core.num).toDouble())
.toList(),
standardDeviation:
(json_['standardDeviation'] as core.num?)?.toDouble(),
);