GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo.fromJson constructor

GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo.fromJson(
  1. Map json_
)

Implementation

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