CountryCode constructor

CountryCode({
  1. String? name,
  2. String? flagUri,
  3. String? code,
  4. String? dialCode,
})

Implementation

CountryCode({
  this.name,
  this.flagUri,
  this.code,
  this.dialCode,
});