GoogleCloudAiplatformV1StringArray.fromJson constructor

GoogleCloudAiplatformV1StringArray.fromJson(
  1. Map json_
)

Implementation

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