SparkLabelTitle constructor

const SparkLabelTitle({
  1. Key? key,
  2. required FormGroupItem manage,
  3. Widget? suffixIcon,
  4. bool showSuffix = true,
  5. Size? suffixSize,
  6. int? maxLines,
  7. void onTap(
    1. BuildContext context,
    2. SparkLabelTitleData data
    )?,
  8. String? hitText,
  9. TextStyle? style,
  10. TextStyle? hitTextStyle,
  11. EdgeInsets padding = EdgeInsets.zero,
  12. EdgeInsets? margin,
  13. double? width,
  14. bool selectDown = false,
  15. EdgeInsets? contentPadding,
  16. Alignment? alignment,
  17. bool enabled = true,
})

Implementation

const SparkLabelTitle({
  Key? key,
  required FormGroupItem manage,
  this.suffixIcon,
  this.showSuffix = true,
  this.suffixSize,
  this.maxLines,
  this.onTap,
  this.hitText,
  this.style,
  this.hitTextStyle,
  this.padding = EdgeInsets.zero,
  this.margin,
  this.width,
  this.selectDown = false,
  this.contentPadding,
  this.alignment,
  bool enabled = true,
}) : super(key: key, manage: manage, enabled: enabled);