subscribeToSectionsInChannel method

TivioDataStream<TivioDataPagination<TivioDataSection>>? subscribeToSectionsInChannel({
  1. required String channelId,
  2. int count = 10,
})

Section

Implementation

TivioDataStream<
    TivioDataPagination<TivioDataSection>>? subscribeToSectionsInChannel({
  required String channelId,
  int count = 10,
}) {
  return _bridge.subscribeToSectionsInChannel(
      channelId: channelId, count: count);
}