TabIndicator constructor

const TabIndicator({
  1. required double height,
  2. required double width,
  3. Color? color,
  4. double? relativeOffsetX,
  5. double? relativeOffsetY,
  6. BorderRadius? borderRadius,
  7. IndicatorAlignment? alignment,
  8. OnRadiusChanged? onRadiusChanged,
  9. OnShaderChanged? onShaderChanged,
})

Implementation

const TabIndicator({
  required this.height,
  required this.width,
  this.color,
  this.relativeOffsetX,
  this.relativeOffsetY,
  this.borderRadius,
  this.alignment,
  this.onRadiusChanged,
  this.onShaderChanged,
});