RemainingCount constructor

const RemainingCount({
  1. Key? key,
  2. required int count,
  3. required ColorScheme colorScheme,
})

Creates a remaining count widget.

Both count and colorScheme must not be null.

Implementation

const RemainingCount({
  super.key,
  required this.count,
  required this.colorScheme,
});