createRecommendationEvent method
Implementation
@override
Future createRecommendationEvent(
String storeId,
String action,
List<String> itemIds,
) {
return handleNativeCall(
methodChannel.invokeMethod(MethodNames.createRecommendationEvent, {
'storeId': storeId,
'action': action,
'itemIds': itemIds,
}),
);
}