IdentityVerificationSessionCanceledEvent.fromJson constructor

IdentityVerificationSessionCanceledEvent.fromJson(
  1. Object? json
)

Implementation

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