Uppercases the first character of value.
value
static String ucfirst(String value) => value.isEmpty ? value : '${value[0].toUpperCase()}${value.substring(1)}';