BaseProcessBar constructor

const BaseProcessBar({
  1. Key? key,
  2. required int currentExp,
  3. required int expLevel,
  4. required double width,
  5. int? time,
  6. required Color bgColor,
  7. required Color foregroundColor,
  8. double? height,
  9. double? radius,
})

Implementation

const BaseProcessBar(
    {Key? key,
    required this.currentExp,
    required this.expLevel,
    required this.width,
    this.time,
    required this.bgColor,
    required this.foregroundColor,
    this.height,
    this.radius})
    : super(key: key);