TipsService constructor
TipsService({
- required TipHistory history,
- List<
Tip> ? tips, - bool enabled = true,
Implementation
TipsService({required this.history, List<Tip>? tips, this.enabled = true})
: _tips = tips ?? defaultTips;