We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need to ignore de fourth decimal place:
It formats: 0.0325 => 0.033 But I need to format to: 0.032
final numberFormat = NumberFormat('0.000', 'pt_BR'); return numberFormat.format(this);
The text was updated successfully, but these errors were encountered:
I would recommend using the floor method before passing the number to the number formatter, as package:intl does not offer rounding options.
package:intl
Sorry, something went wrong.
No branches or pull requests
I need to ignore de fourth decimal place:
It formats: 0.0325 => 0.033
But I need to format to: 0.032
The text was updated successfully, but these errors were encountered: