double roundTo([int places = 4]) { final mult = pow(10, places); return ((this * mult).roundToDouble()) / mult; }