Indicator constructor

const Indicator({
  1. Key? key,
  2. required Color color,
  3. required String text,
  4. bool isSquare = false,
  5. double size = 16,
  6. Color? textColor,
})

Implementation

const Indicator({
  super.key,
  required this.color,
  required this.text,
  this.isSquare = false,
  this.size = 16,
  this.textColor,
});