isImage static method

bool isImage(
  1. String string
)

check string is image

Implementation

static bool isImage(String string) {
  String _ext = string.toLowerCase();
  return _ext.isJpg || _ext.isPng || _ext.isSvg;
}