purchaseViaPlayBilling method

Future<Map<String, dynamic>> purchaseViaPlayBilling({
  1. required String productId,
})

Android peer of purchaseViaStoreKit. Routes through the Google Play Billing dialog and returns the resulting CheckoutTransaction shape (source == "play_store").

Implementation

Future<Map<String, dynamic>> purchaseViaPlayBilling({
  required String productId,
}) {
  throw UnimplementedError(
    'purchaseViaPlayBilling() has not been implemented.',
  );
}