LdTextL constructor

const LdTextL(
  1. String text, {
  2. Key? key,
  3. TextAlign? textAlign,
  4. int? maxLines,
  5. TextOverflow? overflow,
  6. TextDecoration? decoration,
  7. LdSize size = LdSize.m,
  8. LdTextType? type = LdTextType.paragraph,
  9. void onLinkTap(
    1. String
    )?,
  10. FontWeight? fontWeight,
  11. double? lineHeight,
  12. bool processLinks = false,
  13. Color? color,
})

Implementation

const LdTextL(
  String text, {
  Key? key,
  TextAlign? textAlign,
  int? maxLines,
  TextOverflow? overflow,
  TextDecoration? decoration,
  LdSize size = LdSize.m,
  LdTextType? type = LdTextType.paragraph,
  void Function(String)? onLinkTap,
  FontWeight? fontWeight,
  double? lineHeight,
  bool processLinks = false,
  Color? color,
}) : super(text,
          key: key,
          textAlign: textAlign,
          maxLines: maxLines,
          overflow: overflow,
          decoration: decoration,
          size: size,
          type: LdTextType.label,
          onLinkTap: onLinkTap,
          fontWeight: fontWeight,
          lineHeight: lineHeight,
          processLinks: processLinks,
          color: color);