selectAll method

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

Selects all content in the attached region, showing handles and toolbar when cause is SelectionChangedCause.toolbar.

Implementation

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