NimuCounter constructor

const NimuCounter({
  1. Key? key,
  2. required double height,
  3. required double width,
  4. required Color backgroundColor,
  5. required String count,
  6. required TextStyle countStyle,
})

Implementation

const NimuCounter({
  Key? key,
  required this.height,
  required this.width,
  required this.backgroundColor,
  required this.count,
  required this.countStyle,
}) : super(key: key);