class Faker::LoremFlickr

def image(size: '300x300', search_terms: [], match_all: false)

Returns:
  • (String) -

Parameters:
  • match_all (Boolean) -- Add "all" as part of the URL.
  • search_terms (Array) -- Adds search terms to the image URL.
  • size (String) -- Specifies the size of image to generate.
def image(size: '300x300', search_terms: [], match_all: false)
  build_url(size, nil, search_terms, match_all)
end