GoogleCloudContentwarehouseV1FloatArray.fromJson constructor

GoogleCloudContentwarehouseV1FloatArray.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1FloatArray.fromJson(core.Map json_)
  : this(
      values:
          (json_['values'] as core.List?)
              ?.map((value) => (value as core.num).toDouble())
              .toList(),
    );