KCircularWidget constructor

const KCircularWidget({
  1. Key? key,
  2. double percentage = 0.0,
  3. Size? size,
  4. double thickness = 1.0,
  5. String? text,
  6. Color? textColor = Colors.black54,
  7. double? textSize = 12,
  8. Color? color,
})

Implementation

const KCircularWidget(
    {Key? key,
    this.percentage = 0.0,
    this.size,
    this.thickness = 1.0,
    this.text,
    this.textColor = Colors.black54,
    this.textSize = 12,
    this.color})
    : super(key: key);