GooglePlayUserChoiceDetails constructor

const GooglePlayUserChoiceDetails({
  1. required String originalExternalTransactionId,
  2. required String externalTransactionToken,
  3. required List<GooglePlayUserChoiceDetailsProduct> products,
})

Creates a new Google Play specific user choice billing details object with the provided details.

Implementation

const GooglePlayUserChoiceDetails({
  required this.originalExternalTransactionId,
  required this.externalTransactionToken,
  required this.products,
});