RemainingCount constructor
const
RemainingCount({
- Key? key,
- required int count,
- 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,
});