resposnive text length of space model name

This commit is contained in:
hannathkadher
2025-03-13 13:51:52 +04:00
parent 16df75eb49
commit 8ed6980264
2 changed files with 38 additions and 47 deletions

View File

@ -0,0 +1,6 @@
class StringUtils {
static String capitalizeFirstLetter(String text) {
if (text.isEmpty) return text;
return text[0].toUpperCase() + text.substring(1);
}
}