Dapatkan kata pertama dari string sebelum ruang berkobar
String value = 'The text is this';
value = value.split(' ').first;
print(value)// output: The
Plain Puma
String value = 'The text is this';
value = value.split(' ').first;
print(value)// output: The