Indicator constructor

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

Implementation

const Indicator({
  Key? key,
  required this.color,
  required this.text,
  required this.isSquare,
  this.size = 16,
  this.textColor = const Color(0xff505050),
}) : super(key: key);