AddPhoneController constructor

AddPhoneController(
  1. MyUserService _myUserService, {
  2. void pop()?,
  3. required UserPhone phone,
  4. bool timeout = false,
})

Implementation

AddPhoneController(
  this._myUserService, {
  this.pop,
  required this.phone,
  bool timeout = false,
}) {
  if (timeout) {
    _setResendPhoneTimer();
  }
}