isImage property

bool get isImage

from fileName as image extentions return true

Implementation

bool get isImage {
  if (extention == "jpg" || extention == "jpeg" || extention == "png") {
    return true;
  }
  return false;
}