initial property
UserSelectionState
get
initial
A UserSelectionState to be applied to a table as soon as it renders for the first time.
Implementation
static UserSelectionState get initial => UserSelectionState._(
BuiltList.from(
<UserSelectionModel>[
CellUserSelectionModel.fromAnchorFocus(
anchor: const IntVector2.symmetric(0),
focus: const IntVector2.symmetric(0),
),
],
),
);