CustomTabIndicator constructor

const CustomTabIndicator({
  1. BorderSide borderSide = const BorderSide(width: 2.0, color: Colors.white),
  2. EdgeInsetsGeometry insets = EdgeInsets.zero,
  3. JJTabBarIndicatorType type = JJTabBarIndicatorType.line,
  4. double width = 0.0,
})

Create an underline style selected tab indicator.

The borderSide and insets arguments must not be null.

Implementation

const CustomTabIndicator(
    {this.borderSide = const BorderSide(width: 2.0, color: Colors.white),
    this.insets = EdgeInsets.zero,
    this.type = JJTabBarIndicatorType.line,
    this.width = 0.0})
    : assert(borderSide != null),
      assert(insets != null);