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