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