String toMoney({ int fix = 2, bool remove = true, }) { var money = toStringAsFixed(fix); if (remove) { money = money.remove0Tail; } return money; }