I want to format my code but not sure what format type is best for my project needs.
I found out that for only dart and for flutter projects (I have both) there are more than one option to use for formatting the code that come pre built in the programming language/framework.
dartfmt:
dartfmt -w *
dart format:
dart format *
flutter format:
flutter format *
What is the difference, when should I use what, is there best practice.