IdentityVerificationSessionVerifiedEvent.fromJson constructor

IdentityVerificationSessionVerifiedEvent.fromJson(
  1. Object? json
)

Implementation

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