how to get the first word in a string flutter code example
Example: how to get first word of a sentence in flutter
static String getFirstWord(String inputString) {
List<String> wordList = inputString.split(" ");
if (wordList.isNotEmpty) {
return wordList[0];
} else {
return ' ';
}
}