isAllowedImageFileName static method

bool isAllowedImageFileName(
  1. String file
)

Implementation

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