GoogleCloudBillingBudgetsV1ListBudgetsResponse.fromJson constructor

GoogleCloudBillingBudgetsV1ListBudgetsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudBillingBudgetsV1ListBudgetsResponse.fromJson(core.Map json_)
    : this(
        budgets: json_.containsKey('budgets')
            ? (json_['budgets'] as core.List)
                .map((value) => GoogleCloudBillingBudgetsV1Budget.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );