Parameters
Whether text selection is enabled or disabled.
Controls whether text can be selected by the user.
.textSelection(mode: 'enabled' | 'disabled'): Component;
Text("This text can be selected")
.textSelection('enabled')
Text("This text cannot be selected")
.textSelection('disabled')