mirror of
https://github.com/Iconica-Development/flutter_carousel.git
synced 2025-05-18 20:13:43 +02:00
5 lines
138 B
Dart
5 lines
138 B
Dart
|
extension CapitalizeExtension on String {
|
||
|
String capitalize() =>
|
||
|
isNotEmpty ? "${this[0].toUpperCase()}${substring(1)}" : this;
|
||
|
}
|