0 purchases
utils plus
utils_plus is a Flutter package that provides a collection of useful extensions for common Dart and Flutter types. It aims to simplify and enhance your development experience by offering convenient methods and utilities.
Features #
Contains various extentions for
String
num
int
List
DateTime
Enum
Getting started #
To use this package, add utils_plus to your pubspec.yaml file:
dependencies:
utils_plus: ^0.0.4
copied to clipboard
Usage #
Check out the example directory for detailed examples:
enum UserType{
admin,
superAdmin,
normal;
}
final a = UserType.superAdmin;
print(a.toFormattedString) // Returns 'Super Admin'
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.