scout_code_generator 0.0.1
scout_code_generator: ^0.0.1 copied to clipboard
Feature-based Clean Architecture code generator for Flutter/Dart. Generates models, datasource, repository, entity, and usecase with proper imports and Either<Failure, T> types.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate scout_code_generator
Use it
The package has the following executables:
$ scout
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add scout_code_generator
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
scout_code_generator: ^0.0.1
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:scout_code_generator/scout_code_generator.dart';