Simple Greet
A simple Flutter package that provides functions for greetings. This package was created as an example for the pub.dev publishing process.
Features
- Provides a customizable "Hello" greeting.
Usage
Add simple_greet to your pubspec.yaml file, then import the package in your Dart file.
import 'package:fmi_core_dummy/fmi_core_dummy.dart';
void main() {
// Usage example
String greeting = greet();
print(greeting); // Output: Hello World!
}