operator + method

HoursMinutes operator +(
  1. HoursMinutes other
)

Implementation

HoursMinutes operator +(HoursMinutes other) {
  final totalMinutes = this.totalMinutes + other.totalMinutes;
  return HoursMinutes.fromMinutes(totalMinutes);
}