speed_up 0.2.1
speed_up: ^0.2.1 copied to clipboard
Package to speed up your productivity.
SpeedUp #
Package to speed up your productivity
Usage #
String extensions #
Check String is null or empty
isStringNullOrEmpty('Some String');
isStringNullOrEmpty('');
isStringNullOrEmpty(null);
will print
false
true
true
Get enum title
enum AccountType {
general,
owner,
}
debugPrint('Account type: ' + getEnumTitle(UserType.general));
will print
Account type: general
Contributing #
We accept the following contributions:
- Improving documentation
- Reporting issues
- Fixing bugs