0

Some existing dart package documentation, such as dart_ctags, call on the flutter/dart developer to employ dart2native, but it's no where in current dart or flutter sdks.

J Michael
  • 413

1 Answers1

0

Officially, from dart.dev:

The dart compile command replaces the dart2native, dart2aot, and dart2js commands.

The Flutter/Dart developer preferring Vim will find this information valuable given that ctags does not yet support the Dart language, necessitating the use of the dart-ctags package.

Dart SDK 2.6 originally introduced dart2native. Later, Dart SDK v. 2.8 introduced the dart tool, and dart compile, in preparation for null safety. The present null-safe stable Dart SDK version at the time of this writing is 2.16.2 updated roughly every three months.

Glorfindel
  • 4,158
J Michael
  • 413