PhoneData constructor

const PhoneData({
  1. required String dialCode,
  2. required String iso2,
  3. required String phone,
})

Implementation

const factory PhoneData({
  ///Dial code of the corresponding country
  required String dialCode,

  ///ISO2 of the corresponding country
  required String iso2,

  ///Just the phone numbers with no country dial code
  required String phone,
}) = _PhoneData;