restoreEntitlements method
Implementation
@override
Future<List<Map<String, dynamic>>> restoreEntitlements({required String userId}) async {
final result = await methodChannel.invokeMethod<List>('restoreEntitlements', {
'userId': userId,
});
return result!.map((e) => Map<String, dynamic>.from(e as Map)).toList();
}