TextBar constructor

TextBar(
  1. String text, {
  2. Color color = Colors.blue,
  3. Color textColor = Colors.white,
  4. double fontSize = 14,
  5. double radius = 4,
})

Implementation

TextBar(
  this.text, {
  this.color = Colors.blue,
  this.textColor = Colors.white,
  this.fontSize = 14,
  this.radius = 4,
});