toolkit 0.1.0
toolkit: ^0.1.0 copied to clipboard
Just a simple toolkit for dart and flutter. Some API are ready to help manipulate map, string, random, and sleep. Hopefully can be useful.
example/main.dart
import 'package:toolkit/toolkit.dart';
import 'mapExample.dart';
import 'randomExample.dart';
import 'regexpExample.dart';
import 'sleepExample.dart';
main () async {
// Init new toolkit
Toolkit t = Toolkit();
mapExample(t);
print("\n\n");
randomExample(t);
print("\n\n");
regexpExample(t);
print("\n\n");
sleepExample(t);
}