selection property

  1. @override
SelectionModel<T> get selection
override

The selection model this container represents.

Implementation

@override
SelectionModel<T> get selection => super.selection;
  1. @Input()
  2. @override
set selection (SelectionModel<T> value)
override

The SelectionModel for this container.

Implementation

@Input()
@override
set selection(SelectionModel<T> value) {
  super.selection = value;
  _refreshItems();
}