selectAll method

void selectAll([
  1. SelectionChangedCause cause = SelectionChangedCause.toolbar
])

Selects all the content in this region. Shows selection handles and, when cause is SelectionChangedCause.toolbar, the context toolbar.

Mirrors SelectableRegionState.selectAll.

Implementation

void selectAll(
    [SelectionChangedCause cause = SelectionChangedCause.toolbar]) {
  innerRegionState?.selectAll(cause);
}