mirror of
https://github.com/foss42/apidash.git
synced 2025-05-22 16:57:07 +08:00
6 lines
136 B
Dart
6 lines
136 B
Dart
extension StringExtension on String {
|
|
String capitalize() {
|
|
return "${this[0].toUpperCase()}${substring(1).toLowerCase()}";
|
|
}
|
|
}
|