GoogleCloudRunV2GRPCAction.fromJson constructor

GoogleCloudRunV2GRPCAction.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRunV2GRPCAction.fromJson(core.Map json_)
    : this(
        port: json_.containsKey('port') ? json_['port'] as core.int : null,
        service: json_.containsKey('service')
            ? json_['service'] as core.String
            : null,
      );