isImageFile static method

bool isImageFile(
  1. File file
)

Implementation

static bool isImageFile(File file) =>
    file.path.endsWith('.jpg') ||
    file.path.endsWith('.jpeg') ||
    file.path.endsWith('.png');