selectable method
Implementation
Widget selectable({
SelectionController? controller,
Style? selectionHighlightStyle,
}) {
return SelectableRichText(
text: text,
selectionHighlightStyle: selectionHighlightStyle,
textAlign: textAlign,
softWrap: softWrap,
overflow: overflow,
maxWidth: maxWidth,
controller: controller,
);
}