An open API service indexing awesome lists of open source software.

https://github.com/kevinhellos/help-me-dart

Shorthand utilities & helper functions for Dart
https://github.com/kevinhellos/help-me-dart

dart-library

Last synced: 12 months ago
JSON representation

Shorthand utilities & helper functions for Dart

Awesome Lists containing this project

README

          

# Help Me Dart
Shorthand utilities & helper functions for Dart.

## Demo
To run locally, ensure you have Dart SDK installed on your local machine.

Download Dart SDK from: https://dart.dev/get-dart
```dart
// main.dart

import "./help.dart"; // import the helper library
void main(){

// Using input.getString(); // to get user's console input
String? name = input.getString("Enter name> ");

print("Hello $name !");

}

```