@useResult double truncateToDecimals(int places) { final double f = math.pow(10, places).toDouble(); return (this * f).truncate() / f; }