ContainerTabIndicator constructor

const ContainerTabIndicator({
  1. double? width,
  2. double? widthFraction,
  3. double? height,
  4. double? heightFraction,
  5. EdgeInsetsGeometry padding = const EdgeInsets.all(0.0),
  6. Color color = const Color(0xFF2196F3),
  7. BorderRadius radius = BorderRadius.zero,
  8. double borderWidth = 0.0,
  9. Color borderColor = const Color(0xFF2196F3),
})

Implementation

const ContainerTabIndicator({
  this.width,
  this.widthFraction,
  this.height,
  this.heightFraction,
  this.padding = const EdgeInsets.all(0.0),
  this.color = const Color(0xFF2196F3),
  this.radius = BorderRadius.zero,
  this.borderWidth = 0.0,
  this.borderColor = const Color(0xFF2196F3),
});