Weekday constructor

Weekday({
  1. CodeStubDto? weekday,
  2. int? weekNumber,
})

Returns a new Weekday instance.

Implementation

Weekday({
  this.weekday,
  this.weekNumber,
});