getVTuberClips method Null safety

  1. @override
Future<VideoFullList> getVTuberClips(
  1. String channelId,
  2. {List<Includes>? includes,
  3. List<Language> languages = const [Language.all],
  4. int limit = 25,
  5. int offset = 0,
  6. bool paginated = true}
)

Get Clips of a VTuber

Alias of getVideosRelatedToChannel()

Returns VideoFullList

Arguments

  • channelId ID of the Youtube Channel that is being queried
  • includes Request extra data be included in the results. They are not guarenteed to be returned.
  • languages List of Language enum to filter channels/clips. Official streams do not follow this parameter
  • limit Result limit. Max of 50.
  • offset Offset results
  • paginated If paginated is set to true, returns VideoFullList with total, otherwise returns VideoFullList without the total.

Implementation

@override
Future<VideoFullList> getVTuberClips(
  String channelId, {
  List<Includes>? includes,
  List<Language> languages = const [Language.all],
  int limit = 25,
  int offset = 0,
  bool paginated = true,
}) async {
  return await getVideosRelatedToChannel(channelId, type: VideoSearchType.clips, includes: includes, languages: languages, limit: limit, offset: offset, paginated: paginated);
}