S360fTextWidget constructor

const S360fTextWidget({
  1. required dynamic text,
  2. Key? key,
  3. String? prefix,
  4. String? suffix,
  5. dynamic icon,
  6. double? iconSize = 20,
  7. Color? iconColor,
  8. TextStyle? textStyle,
  9. TextStyle? prefixStyle,
  10. TextStyle? suffixStyle,
  11. double spacing = 8.0,
})

Implementation

const S360fTextWidget({
  required this.text,
  super.key,
  this.prefix,
  this.suffix,
  this.icon,
  this.iconSize = 20,
  this.iconColor,
  this.textStyle,
  this.prefixStyle,
  this.suffixStyle,
  this.spacing = 8.0,
});