fetchNextSectionsInChannel method

dynamic fetchNextSectionsInChannel({
  1. required String channelId,
  2. int count = 10,
})

Implementation

fetchNextSectionsInChannel({
  required String channelId,
  int count = 10,
}) {
  return _bridge.fetchNextSectionsInChannel(
      channelId: channelId, count: count);
}