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