Capitalizes the given string
String capitalize(String text) { return "${text[0].toUpperCase()}${text.substring(1)}"; }