MoMoForm constructor

const MoMoForm({
  1. Key? key,
  2. required GlobalKey<FormState> formKey,
  3. required TextEditingController phoneCtrl,
  4. required NetworksByCountry networksByCountry,
  5. required MoMoFormChanged onChanged,
  6. required TextEditingController otp,
  7. String initialCountryIso = 'BJ',
})

Implementation

const MoMoForm({
  super.key,
  required this.formKey,
  required this.phoneCtrl,
  required this.networksByCountry,
  required this.onChanged,
  required this.otp,
  this.initialCountryIso = 'BJ',
});