static bool isAllowedImageFileName(String file) => allowedImageExtensions .firstWhere((String ext) => file.endsWith('.$ext'), orElse: () => '') .isNotEmpty;