fetchNextVideosInSection method

dynamic fetchNextVideosInSection({
  1. required String sectionId,
  2. int count = 10,
})

Implementation

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