CountryListResponse constructor

CountryListResponse(
  1. {String? id,
  2. String? code,
  3. String? name,
  4. int? dialCode,
  5. String? currencyName,
  6. String? symbol,
  7. String? currencyCode}
)

Implementation

CountryListResponse({
  this.id,
  this.code,
  this.name,
  this.dialCode,
  this.currencyName,
  this.symbol,
  this.currencyCode,
});