PhoneNumberInput constructor

PhoneNumberInput({
  1. Key? key,
  2. required String countryCode,
  3. double? fontSize,
})

Implementation

PhoneNumberInput({
  Key? key,
  required this.countryCode,
  this.fontSize,
}) : super(key: key);