12 lines
144 B
Dart
12 lines
144 B
Dart
|
|
main() {
|
||
|
|
var empty = '';
|
||
|
|
|
||
|
|
if (empty.isEmpty) {
|
||
|
|
print('it is empty');
|
||
|
|
}
|
||
|
|
|
||
|
|
if (empty.isNotEmpty) {
|
||
|
|
print('it is not empty');
|
||
|
|
}
|
||
|
|
}
|