OneDay constructor

OneDay({
  1. int? confirmed,
  2. int? paid,
})

Implementation

OneDay({
    this.confirmed,
    this.paid,
});