Country constructor

Country({
  1. String? code,
  2. String? name,
  3. List<State>? states,
  4. String? currencyCode,
  5. CurrencyPos? currencyPos,
  6. Sep? decimalSep,
  7. DimensionUnit? dimensionUnit,
  8. int? numDecimals,
  9. Sep? thousandSep,
  10. WeightUnit? weightUnit,
})

Implementation

Country({
  this.code,
  this.name,
  this.states,
  this.currencyCode,
  this.currencyPos,
  this.decimalSep,
  this.dimensionUnit,
  this.numDecimals,
  this.thousandSep,
  this.weightUnit,
});