PhoneVerificationData constructor

PhoneVerificationData({
  1. required String phone,
  2. required int codeLifetime,
  3. required OtpType otpType,
})

Implementation

PhoneVerificationData({
  required this.phone,
  required this.codeLifetime,
  required this.otpType,
});