PhoneVerificationDialog constructor

const PhoneVerificationDialog({
  1. Key? key,
  2. required AuthyoResult authyoRes,
  3. required String to,
  4. void onVerificationComplete(
    1. AuthyoResult authyoResult
    )?,
})

Implementation

const PhoneVerificationDialog({
  super.key,
  required this.authyoRes,
  required this.to,
  this.onVerificationComplete,
});