ListSecretVersionsResponse.fromJson constructor
ListSecretVersionsResponse.fromJson(
- Map json_
Implementation
ListSecretVersionsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
totalSize: json_['totalSize'] as core.int?,
versions: (json_['versions'] as core.List?)
?.map((value) => SecretVersion.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);