selectable method

Widget selectable({
  1. SelectionController? controller,
  2. Style? selectionHighlightStyle,
})

Implementation

Widget selectable({
  SelectionController? controller,
  Style? selectionHighlightStyle,
}) {
  return SelectableMarkdownText(
    data: data,
    options: options,
    textStyle: textStyle,
    selectionHighlightStyle: selectionHighlightStyle,
    softWrap: softWrap,
    maxWidth: maxWidth,
    controller: controller,
  );
}