nexon_cli 1.0.1
nexon_cli: ^1.0.1 copied to clipboard
CLI to scaffold REST features and methods for Dart/Flutter projects, generating endpoints, models, and BLoC-ready templates with `start` and `add method` commands.
example/nexon_cli_example.dart
/// Example usage of the nexon_cli package.
///
/// This example imports the library and calls a simple function.
/// In real projects, you'll use the `nexon` CLI commands:
/// `nexon start <feature>` and `nexon add <method> in <feature>`.
import 'package:nexon_cli/nexon_cli.dart';
void main() {
// Prints 42 from the sample library function.
final result = calculate();
print('calculate() => $result');
}