hasActiveEntitlement method

Future<bool> hasActiveEntitlement({
  1. required String productId,
})

Quick check: does the user have an active entitlement for productId?

Implementation

Future<bool> hasActiveEntitlement({required String productId}) =>
    _wrap(() => _platform.hasActiveEntitlement(productId: productId));