TabCardIndicator constructor
Implementation
TabCardIndicator({double radius = 12, Color? color, List<Color>? gradientColors})
: super(
borderRadius: BorderRadius.all(Radius.circular(radius)),
color: color,
gradient: color == null ? LinearGradient(colors: gradientColors ?? [const Color(0xff796aff), const Color(0xff796aff)]) : null,
);