getRecommendationsV2 method
Future<SyneriseResult<RecommendationResponse> >
getRecommendationsV2(
- RecommendationOptions recommendationOptions
Implementation
Future<SyneriseResult<RecommendationResponse>> getRecommendationsV2(
RecommendationOptions recommendationOptions) async {
return await SyneriseInvocation(methodChannel)
.invokeSDKApiMethod<RecommendationResponse>(
"Content/getRecommendationsV2",
parameters: recommendationOptions.asMap(),
isMappable: true);
}