isImageUrl static method

bool isImageUrl(
  1. String url
)

Returns true if URL extension matches an image type.

Implementation

static bool isImageUrl(String url) => _getMediaType(url) == MediaType.image;