格式化金额
String moneyFormat(double amount, {String format = "#,##0.00"}) { NumberFormat fm = NumberFormat(format); return fm.format(amount); }