CustomSelectableText constructor

const CustomSelectableText({
  1. Key? key,
  2. required String text,
  3. bool openLinks = true,
  4. bool isAnonymous = false,
  5. TextStyle? textStyle,
})

Implementation

const CustomSelectableText({
  super.key,
  required this.text,
  this.openLinks = true,
  this.isAnonymous = false,
  this.textStyle,
});