FxTabIndicationPainter constructor
FxTabIndicationPainter({})
Implementation
FxTabIndicationPainter({required this.indicatorWidth,
required this.xPadding, required this.indicatorRadius, required this.yPadding,
this.pageController, this.selectedBackground})
: super(repaint: pageController) {
dxTarget = this.indicatorWidth;
dxEntry = this.xPadding;
radius = indicatorRadius;
dy = yPadding;
painter = new Paint()
..color = selectedBackground!
..style = PaintingStyle.fill;
}