fastlane_cli 0.1.10
fastlane_cli: ^0.1.10 copied to clipboard
CLI plugin that bootstraps Fastlane, Firebase App Distribution, and GitHub Actions for Flutter projects.
example/main.dart
import 'package:fastlane_cli/fastlane_cli.dart';
Future<void> main() async {
final cli = FastlaneCli();
// Prints the top-level help so users can see available commands quickly.
await cli.run(<String>['--help']);
}