TabSizeIndicator constructor

TabSizeIndicator({
  1. required List<Color> colors,
  2. EdgeInsetsGeometry insets = EdgeInsets.zero,
  3. double height = 8,
  4. double width = 20,
})

Implementation

TabSizeIndicator({
  required this.colors,
  this.insets = EdgeInsets.zero,
  this.height = 8,
  this.width = 20,
}) {
  borderSide = BorderSide(width: height);
}