isSelected method

bool isSelected(
  1. T item
)

Returns whether the item is selected.

Implementation

bool isSelected(T item) {
  return controller.isSelected(item);
}