Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

How to Check String is Empty or Not in Dart (Null Safety)?

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

We can check a string is empty or not by the String Property isEmpty. If the string is empty then it returns True if the string is not empty then it returns False.

Syntax: String.isEmpty 

Return : True or False.

Example 1:

Dart




// main function start
void main() {
   
    // initialise a string st
    String? st = "";
   
    // print string is empty or not
    print(st.isEmpty);
}


Output:

true

Example 2:

Dart




// main function start
void main() {
   
    // initialise a string st
    String? st = "Geeksforgeeks";
   
    // print string is empty or not
    print(st.isEmpty);
}


 Output:

false
My Personal Notes arrow_drop_up
Last Updated : 09 Aug, 2021
Like Article
Save Article
Similar Reads