ExtendedUnderlineTabIndicator constructor

const ExtendedUnderlineTabIndicator({
  1. BorderSide borderSide = const BorderSide(width: 2.0, color: Colors.white),
  2. EdgeInsetsGeometry insets = EdgeInsets.zero,
  3. Axis scrollDirection = Axis.horizontal,
  4. StrokeCap strokeCap = StrokeCap.square,
  5. double? size,
})

Create an underline style selected tab indicator.

The borderSide and insets arguments must not be null.

Implementation

const ExtendedUnderlineTabIndicator({
  this.borderSide = const BorderSide(width: 2.0, color: Colors.white),
  this.insets = EdgeInsets.zero,
  this.scrollDirection = Axis.horizontal,
  this.strokeCap = StrokeCap.square,
  this.size,
});