selectAll method

void selectAll()

Selects all of the input's content.

Implementation

void selectAll() {
  inputRef!.nativeElement.select();
}