DebugSelectableText constructor

const DebugSelectableText({
  1. required String text,
  2. bool monospace = true,
  3. Key? key,
})

Creates a debug selectable text.

Implementation

const DebugSelectableText({
  required this.text,
  this.monospace = true,
  super.key,
});