displayCarousel method

  1. @override
Future<void> displayCarousel(
  1. String carouselId
)
override

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

@override
Future<void> displayCarousel(String carouselId) async {
  await _channel.invokeMethod('displayCarousel', {'carouselId': carouselId});
}