native_doctor 0.1.0-dev.4 native_doctor: ^0.1.0-dev.4 copied to clipboard
A tool that analyzes Flutter and Dart project dependencies, find requirements for native toolchains and, if possible, resolves issues.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate native_doctor
Use it
The package has the following executables:
$ native_doctor
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add native_doctor
With Flutter:
$ flutter pub add native_doctor
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
native_doctor: ^0.1.0-dev.4
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:native_doctor/native_doctor.dart';