FLUTTER_LIB_UTILS
Features
Utility wrappers and extensions to make flutter easy and utils.
Getting started
Add the following to your pubspec.yaml :
dependencies: flutter_lib_utils:"^1.0.0"
then run pub install .
Next, import flutter_lib_utils:
import'package:flutter_lib_utils/utils/util.dart';
Example
import'package:flutter_lib_utils/utils/util.dart';
void main() {
Util().printWrapped(sprintf("%s %s", "Hello", "World"));
Util().printWrapped(sprintf("%#04x", 10));
}