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