GoogleCloudRunV2NetworkInterface.fromJson constructor

GoogleCloudRunV2NetworkInterface.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRunV2NetworkInterface.fromJson(core.Map json_)
  : this(
      network: json_['network'] as core.String?,
      subnetwork: json_['subnetwork'] as core.String?,
      tags: (json_['tags'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );