GoogleCloudBillingBudgetsV1CustomPeriod.fromJson constructor
GoogleCloudBillingBudgetsV1CustomPeriod.fromJson(
- Map json_
Implementation
GoogleCloudBillingBudgetsV1CustomPeriod.fromJson(core.Map json_)
: this(
endDate: json_.containsKey('endDate')
? GoogleTypeDate.fromJson(
json_['endDate'] as core.Map<core.String, core.dynamic>)
: null,
startDate: json_.containsKey('startDate')
? GoogleTypeDate.fromJson(
json_['startDate'] as core.Map<core.String, core.dynamic>)
: null,
);