magic_value_extractor 0.1.0
magic_value_extractor: ^0.1.0 copied to clipboard
Extracts hard-coded magic strings and numbers from Dart and Flutter sources into AppStrings / AppNumbers constants and rewrites the call sites for you.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate magic_value_extractorUse it
The package has the following executables:
$ magic_value_extractor
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add magic_value_extractorWith Flutter:
$ flutter pub add magic_value_extractorThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
magic_value_extractor: ^0.1.0Alternatively, 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:magic_value_extractor/magic_value_extractor.dart';