createRecommendationEvent method

  1. @override
Future createRecommendationEvent(
  1. String storeId,
  2. String action,
  3. List<String> itemIds
)
override

Implementation

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