displayCarousel method

Future<void> displayCarousel(
  1. String carouselId
)

To display a Carousel, pass in a carouselId from your Intercom workspace.

A carousel must be ‘live’ to be used in this feature. If it is in a draft or paused state, end-users will see an error if the app tries to open the content.

Implementation

Future<void> displayCarousel(String carouselId) async {
  return IntercomFlutterPlatform.instance.displayCarousel(carouselId);
}