handy 1.1.5 handy: ^1.1.5 copied to clipboard
A collection of handy utilities that I found useful while writing my own programs.
import 'package:handy/handy.dart';
void main() {
final title = "rayman 2: the great escape";
print(title.toTitleCase()); // Rayman 2: The Great Escape
print(title.capitalize()); // Rayman 2: the great escape
}