5 lines
111 B
Dart
5 lines
111 B
Dart
|
|
class Extenstion {
|
||
|
|
static String capitalize(String s) {
|
||
|
|
return s[0].toUpperCase() + s.substring(1);
|
||
|
|
}
|
||
|
|
}
|