Country constructor

Country(
  1. String name,
  2. String isoCode,
  3. String dialCode,
  4. int phoneMinLength,
  5. int phoneMaxLength, {
  6. List<String> startingDigits = const [],
})

Implementation

Country(
  this.name,
  this.isoCode,
  this.dialCode,
  this.phoneMinLength,
  this.phoneMaxLength, {
  this.startingDigits = const [],
});