isImage property

bool get isImage

Whether this is an image file.

Implementation

bool get isImage {
  final ext = extension.toLowerCase();
  return ['jpg', 'jpeg', 'png', 'gif', 'webp', 'bmp'].contains(ext);
}