FastSecondaryButton constructor

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

Implementation

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