CountryCodeList constructor

const CountryCodeList({
  1. Key? key,
  2. required PhoneNumberInputController phoneNumberInputController,
  3. bool allowSearch = true,
  4. String? searchHint = 'Search...',
})

Implementation

const CountryCodeList(
    {Key? key,
    required this.phoneNumberInputController,
    this.allowSearch = true,
    this.searchHint = 'Search...'})
    : super(key: key);