requestImages method

Future<PixabayResponse> requestImages ({int resultsPerPage: 30, int page, String category })

request random images by category

Implementation

Future<PixabayResponse> requestImages(
    {int resultsPerPage = 30, int page, String category}) async {
  return requestMediaWithKeyword(
      media: MediaType.photo,
      resultsPerPage: resultsPerPage,
      page: page,
      category: category);
}