SkProductResponseWrapper constructor

SkProductResponseWrapper({
  1. required List<SKProductWrapper> products,
  2. required List<String> invalidProductIdentifiers,
})

Creates an SkProductResponseWrapper with the given product details.

Implementation

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