Whether this string is not empty.
Returns false if itself is Null.
false
この文字列が空でないかどうかを調べます。
自身がNullの場合falseを返します。
bool get isNotEmpty { if (this == null) { return false; } return this!.isNotEmpty; }