getPromotionByUUID method

Future<SyneriseResult<Promotion>> getPromotionByUUID(
  1. String uuid
)

Implementation

Future<SyneriseResult<Promotion>> getPromotionByUUID(String uuid) async {
  return await SyneriseInvocation(methodChannel)
      .invokeSDKApiMethod<Promotion>('Promotions/getPromotionByUUID',
          parameters: uuid, isMappable: true);
}