WalletForm constructor

const WalletForm({
  1. Key? key,
  2. required GlobalKey<FormState> formKey,
  3. required TextEditingController phoneCtrl,
  4. required WalletsByCountry walletsByCountry,
  5. required WalletFormChanged onChanged,
  6. String initialCountryIso = 'BJ',
})

Implementation

const WalletForm({
  super.key,
  required this.formKey,
  required this.phoneCtrl,
  required this.walletsByCountry,
  required this.onChanged,
  this.initialCountryIso = 'BJ',
});