GoogleCloudChannelV1TrialSettings.fromJson constructor

GoogleCloudChannelV1TrialSettings.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1TrialSettings.fromJson(core.Map json_)
    : this(
        endTime: json_.containsKey('endTime')
            ? json_['endTime'] as core.String
            : null,
        trial:
            json_.containsKey('trial') ? json_['trial'] as core.bool : null,
      );