In C# I can do:
12341.4.ToString(\"##,#0.00\")
and the result is 12,345.40
What\'s the equivalent in dart?
If you don't wanna print currency symbol:
import 'package:intl/intl.dart'; var noSimbolInUSFormat = new NumberFormat.currency(locale: "en_US", symbol: "");