dart-sdk

Dart language SDK with VM, compiler, and core libraries.

brewmacoslinux
Try with needOr install directly
Source

About

Dart Language SDK, including the VM, dart2js, core libraries, and more

Commands

dartdartaotruntime

Examples

run a dart script from command line$ dart run hello.dart
compile dart code to native executable$ dart compile exe main.dart -o myapp
format dart code automatically$ dart format lib/
check dart code for errors without running$ dart analyze lib/
create a new dart project$ dart create my_project