selectAll method

void selectAll()

Selects all of the input's content.

Implementation

void selectAll() {
  if (inputRef != null) {
    var el = inputRef!;
    if (el is InputElement) {
      el.select();
    }
  }
  //inputRef!.va.nativeElement.select();
}