imageExists function

bool imageExists(
  1. String path
)

Implementation

bool imageExists(String path) {
  return FileSystemEntity.typeSync(path) != FileSystemEntityType.notFound;
}