StrengthBarContainer constructor

const StrengthBarContainer(
  1. {Key? key,
  2. required Color barColor,
  3. required Color backgroundColor,
  4. double? width,
  5. required double height,
  6. required double radius,
  7. required Animation animation}
)

Implementation

const StrengthBarContainer(
    {Key? key,
    required this.barColor,
    required this.backgroundColor,
    this.width,
    required this.height,
    required this.radius,
    required Animation animation})
    : super(key: key, listenable: animation);