ListServiceAccountKeysResponse.fromJson constructor
ListServiceAccountKeysResponse.fromJson(
- Map json_
Implementation
ListServiceAccountKeysResponse.fromJson(core.Map json_)
: this(
keys:
(json_['keys'] as core.List?)
?.map(
(value) => ServiceAccountKey.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);