MatexCountryMetadata constructor
const
MatexCountryMetadata({})
Constructs a country's metadata.
id
, currency
, and code
are required and must be non-empty strings.
vatRates
is optional and represents the VAT rates in the country.
Implementation
const MatexCountryMetadata({
required this.id,
required this.currency,
required this.code,
this.vatRates,
});