ListBillingAccountsResponse.fromJson constructor
ListBillingAccountsResponse.fromJson(
- Map json_
Implementation
ListBillingAccountsResponse.fromJson(core.Map json_)
: this(
billingAccounts: json_.containsKey('billingAccounts')
? (json_['billingAccounts'] as core.List)
.map((value) => BillingAccount.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);