ListCryptoKeysResponse.fromJson constructor

ListCryptoKeysResponse.fromJson(
  1. Map json_
)

Implementation

ListCryptoKeysResponse.fromJson(core.Map json_)
    : this(
        cryptoKeys: (json_['cryptoKeys'] as core.List?)
            ?.map((value) => CryptoKey.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
        nextPageToken: json_['nextPageToken'] as core.String?,
        totalSize: json_['totalSize'] as core.int?,
      );