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