I want to build an application using flutter.
According to Flutter website:
Get native-compiled performance without large browser engine dependencies.
Are flutter app's compiled to machine code or byte code?
There are multiple ways to run Dart programs. Please refer to the dart compile documentation.
Quoting from referenced page, a few of the compilation options include:
Note: You don’t need to compile Dart programs before running them. Instead, you can use the
dart run
command, which uses the Dart VM’s JIT (just-in-time) compiler--a feature that’s especially useful during development.