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