GoogleCloudContentwarehouseV1IntegerArray.fromJson constructor

GoogleCloudContentwarehouseV1IntegerArray.fromJson(
  1. Map json_
)

Implementation

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