getAllPromotions method

Future<SyneriseResult<PromotionResponse>> getAllPromotions()

Implementation

Future<SyneriseResult<PromotionResponse>> getAllPromotions() async {
  return await SyneriseInvocation(methodChannel)
      .invokeSDKApiMethod<PromotionResponse>('Promotions/getAllPromotions',
          isMappable: true);
}