isImage static method

bool isImage(
  1. File file
)

Implementation

static bool isImage(File file){
  return (file.existsSync()&& file.lengthSync() > 10);
}