UserChoiceBillingDetails constructor

const UserChoiceBillingDetails({
  1. required String externalTransactionToken,
  2. required List<String> products,
})

Implementation

const UserChoiceBillingDetails({
  /// Token that must be reported to Google Play within 24 hours
  required this.externalTransactionToken,

  /// List of product IDs selected by the user
  required this.products,
});