satheesh_hello 0.0.1
satheesh_hello: ^0.0.1 copied to clipboard
A simple Dart package that returns a hello message.
Simple Dart package that returns a hello message for a given name.
Usage #
import 'package:satheesh_hello/satheesh_hello.dart';
void main() {
final message = sayHello('Satheesh');
print(message); // Hello Satheesh
}