Textr constructor

const Textr(
  1. String text, {
  2. Key? key,
  3. TextStyle? style,
  4. EdgeInsetsGeometry? margin,
  5. EdgeInsetsGeometry? padding,
  6. double? width,
  7. TextAlign? textAlign,
  8. BorderRadiusGeometry? radius,
  9. TextDirection? textDecoration,
  10. TextOverflow? overflow,
  11. bool? softwrap,
  12. int? maxLines,
  13. AlignmentGeometry? alignment,
  14. BoxBorder? border,
})

Implementation

const Textr(this.text,
    {Key? key,
    this.style,
    this.margin,
    this.padding,
    this.width,
    this.textAlign,
    this.radius,
    this.textDecoration,
    this.overflow,
    this.softwrap,
    this.maxLines,
    this.alignment,
    this.border})
    : super(key: key);