subscribeToRecentVideosInChannel method

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

Implementation

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