randomImageUrl function

String randomImageUrl(
  1. int width,
  2. int height
)

Implementation

String randomImageUrl(int width, int height) {
  return 'https://picsum.photos/seed/${_random.nextInt(1000)}/$width/$height';
}