Angle add(num other, [bool otherIsDegrees = false]) { if (otherIsDegrees) { return Angle.degrees(degrees + other); } return Angle.radians(radians + other); }