如果字符串为空,则返回true ; else返回false 。
String.isEmpty
void main() { String str = "Hello"; print(str.isEmpty); }
它将产生以下output - 。
False