TextBox.round constructor

const TextBox.round(
  1. String? text, {
  2. double fontSize = 9,
  3. Color? color,
  4. Color? fillColor,
  5. Color? borderColor,
  6. double borderWidth = 1,
  7. double? borderRadius = 20,
  8. bool filled = false,
  9. bool primary = false,
  10. bool subbed = false,
  11. double padding = 5,
  12. double? horizontalPadding = 7,
  13. double? verticalPadding,
  14. EdgeInsetsGeometry? margin = const EdgeInsets.symmetric(horizontal: 4),
  15. Key? key,
})

Implementation

const TextBox.round(
  this.text, {
  this.fontSize = 9,
  this.color,
  this.fillColor,
  this.borderColor,
  this.borderWidth = 1,
  this.borderRadius = 20,
  this.filled = false,
  this.primary = false,
  this.subbed = false,
  this.padding = 5,
  this.horizontalPadding = 7,
  this.verticalPadding,
  this.margin = const EdgeInsets.symmetric(horizontal: 4),
  Key? key,
}) : super(key: key);