LoginInput constructor

const LoginInput({
  1. Key? key,
  2. required TextEditingController inputCtrl,
  3. required LoginStep step,
  4. void onNext()?,
})

Implementation

const LoginInput({
  Key? key,
  required this.inputCtrl,
  required this.step,
  this.onNext,
}) : super(key: key);