minus method
Returns a copy of this with the units of time subtracted.
No normalization is performed.
Period(years: 1, months: 1).minus(months: 12); // 1 year -11 months
Implementation
@useResult Period minus({
int years = 0,
int months = 0,
int days = 0,
int hours = 0,
int minutes = 0,
int seconds = 0,
int milliseconds = 0,
int microseconds = 0,
}) => copyWith(
years: this.years - years,
months: this.months - months,
days: this.days - days,
hours: this.hours - hours,
minutes: this.minutes - minutes,
seconds: this.seconds - seconds,
milliseconds: this.milliseconds - milliseconds,
microseconds: this.microseconds - microseconds,
);