IconTextBar constructor

IconTextBar(
  1. String text,
  2. IconData icon, {
  3. Color iconColor = Colors.blue,
  4. Color textColor = Colors.blue,
  5. double iconSize = 20,
  6. double fontSize = 14,
  7. bool vertical = true,
})

Implementation

IconTextBar(
  this.text,
  this.icon, {
  this.iconColor = Colors.blue,
  this.textColor = Colors.blue,
  this.iconSize = 20,
  this.fontSize = 14,
  this.vertical = true,
});