selectable property

bool selectable
final

Allows users to select provided text, copy it to clipboard etc.

Default is false.

Example:

TextScroll(
  'Selectable text',
  selectable: true,
)

Implementation

final bool selectable;