SKPriceLocaleWrapper constructor

SKPriceLocaleWrapper({
  1. required String currencySymbol,
  2. required String currencyCode,
  3. required String countryCode,
})

Creates a new price locale for currencySymbol and currencyCode.

Implementation

// TODO(stuartmorgan): Temporarily ignore const warning in other parts of the
// federated package, and remove this.
// ignore: prefer_const_constructors_in_immutables
SKPriceLocaleWrapper({
  required this.currencySymbol,
  required this.currencyCode,
  required this.countryCode,
});