TagflowSelectableAdapter constructor

const TagflowSelectableAdapter({
  1. required Widget child,
  2. Key? key,
  3. String? text,
  4. double padding = 10.0,
  5. MouseCursor cursor = SystemMouseCursors.text,
})

Creates a TagflowSelectableAdapter widget.

Implementation

const TagflowSelectableAdapter({
  required this.child,
  super.key,
  this.text,
  this.padding = 10.0,
  this.cursor = SystemMouseCursors.text,
});