LokotroRefCountry constructor

const LokotroRefCountry({
  1. required String id,
  2. required String name,
  3. required String countryFlag,
  4. required int minPhoneNumberChars,
  5. required int maxPhoneNumberChars,
})

Implementation

const LokotroRefCountry({
  required this.id,
  required this.name,
  required this.countryFlag,
  required this.minPhoneNumberChars,
  required this.maxPhoneNumberChars,
});