toolkit 0.3.3 toolkit: ^0.3.3 copied to clipboard
Just a simple toolkit for flutter. Some extensions for String, Map, and common helper.
import 'map.dart';
import 'random.dart';
import 'regexp.dart';
import 'sleep.dart';
main() async {
mapExample();
print("\n\n");
randomExample();
print("\n\n");
regexpExample();
print("\n\n");
sleepExample();
}