mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-26 09:25:51 +00:00
5 lines
147 B
Dart
5 lines
147 B
Dart
extension StringExtension on String {
|
|
String capitalizeFirstLetter() {
|
|
return "${this[0].toUpperCase()}${substring(1).toLowerCase()}";
|
|
}
|
|
}
|