VerificationCodes.fromJson constructor
VerificationCodes.fromJson(
- Map json_
Implementation
VerificationCodes.fromJson(core.Map json_)
: this(
etag: json_['etag'] as core.String?,
items:
(json_['items'] as core.List?)
?.map(
(value) => VerificationCode.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
kind: json_['kind'] as core.String?,
);