getProducts method

  1. @override
Future<List<PurchaseProduct>> getProducts({
  1. required String? onRetrieveUserId(),
})
override

Get the PurchaseProduct with its contents included.

Specify a callback to retrieve the user ID in onRetrieveUserId.

中身が含められたPurchaseProductを取得します。

onRetrieveUserIdにユーザーIDを取得するためのコールバックを指定します。

Implementation

@override
Future<List<PurchaseProduct>> getProducts({
  required String? Function() onRetrieveUserId,
}) async {
  throw UnsupportedError("Purchasing function is not supported.");
}