FastButtonLabel constructor

const FastButtonLabel({
  1. required String text,
  2. Key? key,
  3. bool enableInteractiveSelection = false,
  4. TextOverflow? overflow = TextOverflow.ellipsis,
  5. double lineHeight = kFastLineHeight,
  6. TextAlign textAlign = TextAlign.left,
  7. bool? softWrap = false,
  8. bool upperCase = true,
  9. FontWeight? fontWeight,
  10. Color? textColor,
  11. double? fontSize,
  12. int? maxLines,
})

Implementation

const FastButtonLabel({
  required super.text,
  super.key,
  super.enableInteractiveSelection = false,
  super.overflow = TextOverflow.ellipsis,
  super.lineHeight = kFastLineHeight,
  super.textAlign = TextAlign.left,
  super.softWrap = false,
  super.upperCase = true,
  super.fontWeight,
  super.textColor,
  super.fontSize,
  super.maxLines,
});