hasActiveEntitlement method
Implementation
@override
Future<bool> hasActiveEntitlement({required String productId}) async {
final result = await methodChannel.invokeMethod<bool>('hasActiveEntitlement', {
'productId': productId,
});
return result ?? false;
}