isImage property

bool get isImage

Indicates whether this file represents an image or not.

Implementation

bool get isImage {
  // Best effort if [mime] is `null`.
  if (mime == null) {
    return images.contains(extension.toLowerCase());
  }

  return mime?.type == 'image';
}