VerificationNotifier constructor

VerificationNotifier({
  1. required dynamic ref,
  2. required dynamic client,
})

Implementation

VerificationNotifier({
  required this.ref,
  required this.client,
}) : super(const VerificationState(stage: 'verification.init')) {
  _init();
}