simple_echo_dart_package 1.0.0
simple_echo_dart_package: ^1.0.0 copied to clipboard
A package that echoes the message you pass to it.
example/simple_echo_dart_package_example.dart
import 'package:simple_echo_dart_package/simple_echo_dart_package.dart';
void main() {
const simpleEchoDartPackage = SimpleEchoDartPackage();
print(simpleEchoDartPackage.echo('Hello, world!'));
}