Country constructor
Country({
- String? code,
- String? name,
- List<
State> ? states, - String? currencyCode,
- CurrencyPos? currencyPos,
- Sep? decimalSep,
- DimensionUnit? dimensionUnit,
- int? numDecimals,
- Sep? thousandSep,
- WeightUnit? weightUnit,
Implementation
Country({
this.code,
this.name,
this.states,
this.currencyCode,
this.currencyPos,
this.decimalSep,
this.dimensionUnit,
this.numDecimals,
this.thousandSep,
this.weightUnit,
});