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