requestVideosWithKeyword method
request videos for a given keyword or search term
pageing is prepared but not used yet
Implementation
Future<PixabayResponse?> requestVideosWithKeyword(
{String? keyword,
int resultsPerPage = 30,
int? page,
String? category}) async {
return requestMediaWithKeyword(
media: MediaType.video,
keyword: keyword,
resultsPerPage: resultsPerPage,
page: page,
category: category);
}