isDisabled method

bool isDisabled()

Implementation

bool isDisabled() {
  String? mimType = lookupMimeType(assetFullPath);
  if (mimType != null) {
    if (mimType.startsWith('image') || mimType == 'application/pdf') {
      return false;
    }
    return true;
  } else {
    return true;
  }
}