canEdit method
Implementation
bool canEdit(T item) {
if (allowEdit != null) {
if (!allowEdit!(item)) {
return false;
}
}
return _setEditValue != null;
}
bool canEdit(T item) {
if (allowEdit != null) {
if (!allowEdit!(item)) {
return false;
}
}
return _setEditValue != null;
}