SavingGroup constructor

const SavingGroup({
  1. Key? key,
  2. bool completed = false,
})

Implementation

const SavingGroup({
  super.key,
  this.completed = false,
});