Overtime constructor

Overtime({
  1. Map<String, Object> data = const {},
  2. int? total,
})

Returns a new Overtime instance.

Implementation

Overtime({
  this.data = const {},
  this.total,
});