TipsService constructor

TipsService({
  1. required TipHistory history,
  2. List<Tip>? tips,
  3. bool enabled = true,
})

Implementation

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