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