TabItemData constructor

const TabItemData({
  1. IconData iconData = Icons.agriculture_rounded,
  2. Color iconRestingColor = Colors.blue,
  3. Color iconActiveColor = Colors.blue,
  4. double backgroundWidth = 60.0,
  5. double backgroundHeight = 60.0,
  6. double backgroundBorderRadius = 30.0,
  7. Color backgroundRestingColor = Colors.grey,
  8. Color backgroundActiveColor = Colors.lightBlueAccent,
  9. double iconSize = 22.0,
})

Implementation

const TabItemData(
    {this.iconData = Icons.agriculture_rounded,
      this.iconRestingColor = Colors.blue,
      this.iconActiveColor = Colors.blue,
      this.backgroundWidth = 60.0,
      this.backgroundHeight = 60.0,
      this.backgroundBorderRadius = 30.0,
      this.backgroundRestingColor = Colors.grey,
      this.backgroundActiveColor = Colors.lightBlueAccent,
      this.iconSize = 22.0});