canEdit method

bool canEdit(
  1. T item
)

Implementation

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