selection property

SelectionModel<T> get selection
inherited

The selection model this container represents.

Implementation

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

The selection model this container represents.

Implementation

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