CurrencyType constructor

const CurrencyType({
  1. String? currencyCode,
  2. String? currencySymbol,
  3. String? flag,
})

Creates a CurrencyType with the given currencyCode, currencySymbol, and flag.

Implementation

const CurrencyType({this.currencyCode, this.currencySymbol, this.flag});