
dart
List of commands for dart:
-
dart:tldr:03896 dart: Run a Dart file.$ dart run ${filename-dart}try on your machineexplain this command
-
dart:tldr:27a2e dart: Download dependencies for the current project.$ dart pub gettry on your machineexplain this command
-
dart:tldr:50d9d dart: Run unit tests for the current project.$ dart testtry on your machineexplain this command
-
dart:tldr:70323 dart: Initialize a new Dart project in a directory of the same name.$ dart create ${project_name}try on your machineexplain this command
-
dart:tldr:a07e0 dart: Update an outdated project's dependencies to support null-safety.$ dart pub upgrade --null-safetytry on your machineexplain this command
-
dart:tldr:e600b dart: Compile a Dart file to a native binary.$ dart compile exe ${filename-dart}try on your machineexplain this command