convertFromPigeon static method

SKStorefrontWrapper convertFromPigeon(
  1. SKStorefrontMessage msg
)

Converts the pigeon equivalent to an instance of SKStorefrontWrapper

Implementation

static SKStorefrontWrapper convertFromPigeon(SKStorefrontMessage msg) {
  return SKStorefrontWrapper(
    countryCode: msg.countryCode,
    identifier: msg.identifier,
  );
}