isImageFile static method

bool isImageFile(
  1. String filename
)

Checks if the given filename corresponds to an image file.

Implementation

static bool isImageFile(String filename) {
  return _hasExtension(filename, ['jpg', 'jpeg', 'png', 'webp', 'bmp']);
}