extension CapitalizeExtension on String {
  String capitalize() =>
      isNotEmpty ? "${this[0].toUpperCase()}${substring(1)}" : this;
}