FastLinkFy constructor

const FastLinkFy({
  1. Key? key,
  2. required String text,
  3. int? maxLines,
  4. TextAlign textAlign = TextAlign.start,
  5. TextOverflow overflow = TextOverflow.clip,
  6. TextStyle? styleText,
  7. void onTapLink(
    1. String
    )?,
  8. TextStyle? styleLink = const TextStyle(color: Colors.blue, decoration: TextDecoration.underline),
})

Implementation

const FastLinkFy({
  super.key,
  required this.text,
  this.maxLines,
  this.textAlign = TextAlign.start,
  this.overflow = TextOverflow.clip,
  this.styleText,
  this.onTapLink,
  this.styleLink = const TextStyle(
    color: Colors.blue,
    decoration: TextDecoration.underline,
  ),
});