IdentityVerificationSessionRedaction.fromJson constructor
IdentityVerificationSessionRedaction.fromJson(
- Object? json
Implementation
factory IdentityVerificationSessionRedaction.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return IdentityVerificationSessionRedaction(
status:
IdentityVerificationSessionRedactionStatus.fromJson(map['status']));
}