subDays method

Year subDays(
  1. int amount
)

Subtracts an amount of days from the start of year

Implementation

Year subDays(int amount) => startOfYear.subDays(amount.abs()).getYear;