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