resumeSubscriptionForCurrentUser method

  1. @override
Future<void> resumeSubscriptionForCurrentUser({
  1. required String productId,
})
override

1.3.0 no-userId overload — uses the currently identified user.

Implementation

@override
Future<void> resumeSubscriptionForCurrentUser({required String productId}) async {
  await methodChannel.invokeMethod('resumeSubscription', {
    'productId': productId,
  });
}