operator <= method

bool operator <=(
  1. Month other
)

Less than or equals to operator

Implementation

bool operator <=(Month other) => isSameOrBefore(other);