PhoneInput constructor

const PhoneInput({
  1. Key? key,
  2. required String initialCountryCode,
  3. SubmitCallback? onSubmit,
})

Implementation

const PhoneInput({
  Key? key,
  required this.initialCountryCode,
  this.onSubmit,
}) : super(key: key);