restoreEntitlementsForCurrentUser method
1.3.0 no-userId overload — uses the currently identified user.
Implementation
@override
Future<List<Map<String, dynamic>>> restoreEntitlementsForCurrentUser() async {
final result = await methodChannel.invokeMethod<List>('restoreEntitlements');
return result!.map((e) => Map<String, dynamic>.from(e as Map)).toList();
}