SKStorefrontWrapper constructor

SKStorefrontWrapper({
  1. required String countryCode,
  2. required String identifier,
})

Creates a new SKStorefrontWrapper with the provided information.

Implementation

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