TengitsIndicator constructor

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

Implementation

const TengitsIndicator({
  super.key,
  required this.color,
  this.text,
  required this.isSquare,
  this.size,
  this.textColor = const Color(0xff505050),
  this.label,
});