GoogleCloudApigeeV1DeveloperBalance.fromJson constructor

GoogleCloudApigeeV1DeveloperBalance.fromJson(
  1. Map json_
)

Implementation

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