Linkable constructor

Linkable({
  1. Key? key,
  2. required String text,
  3. Color? textColor = Colors.black,
  4. Color? linkColor = Colors.blue,
  5. TextStyle? style,
  6. TextAlign? textAlign = TextAlign.start,
  7. TextDirection? textDirection,
  8. double? textScaleFactor = 1.0,
  9. int? maxLines,
  10. StrutStyle? strutStyle,
  11. TextWidthBasis? textWidthBasis = TextWidthBasis.parent,
  12. TextHeightBehavior? textHeightBehavior,
})

Implementation

Linkable({
  Key? key,
  required this.text,
  this.textColor = Colors.black,
  this.linkColor = Colors.blue,
  this.style,
  this.textAlign = TextAlign.start,
  this.textDirection,
  this.textScaleFactor = 1.0,
  this.maxLines,
  this.strutStyle,
  this.textWidthBasis = TextWidthBasis.parent,
  this.textHeightBehavior,
}) : super(key: key);