Simple Echo Dart Package
A simple Dart package that echoes back the message you pass to it. This package is useful for testing and demonstration purposes.
Features
- Simple echo functionality
- Command-line interface support
- Easy to use API
Getting started
As a dependency
Add this package to your pubspec.yaml:
dependencies:
simple_echo_dart_package: ^1.0.0
Then run:
dart pub get
As a global command-line tool
To use the package as a global command-line tool, run:
dart pub global activate simple_echo_dart_package
Make sure your PATH includes the directory where Dart stores global packages. You can find this directory by running:
dart pub global list
Usage
As a library
import 'package:simple_echo_dart_package/simple_echo_dart_package.dart';
void main() {
final echo = SimpleEchoDartPackage();
print(echo.echo('Hello, World!')); // Output: Hello, World!
}
As a command-line tool
After installing the package, you can use it from the command line:
simple_echo_dart_package "Your message here"
Additional information
License
This project is licensed under the MIT License - see the LICENSE file for details.