GoogleCloudChannelV1Period.fromJson constructor

GoogleCloudChannelV1Period.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1Period.fromJson(core.Map json_)
    : this(
        duration: json_.containsKey('duration')
            ? json_['duration'] as core.int
            : null,
        periodType: json_.containsKey('periodType')
            ? json_['periodType'] as core.String
            : null,
      );