more_functions 0.0.1 more_functions: ^0.0.1 copied to clipboard
A dart package which provides a lot of helpers functions for easy development.
example/more_functions_example.dart
import 'package:more_functions/more_functions.dart'
show ExtensionsStringCaseUpper;
void main() {
print('hello world!'.toUpperCamelCase);
}