isNotEmpty property Null safety
Whether this value has no elements.
Example:
final list = createListProperty<String>(['Bob'])
print(list.isNotEmpty); // true;
Implementation
bool get isNotEmpty => _value.isNotEmpty;
Whether this value has no elements.
Example:
final list = createListProperty<String>(['Bob'])
print(list.isNotEmpty); // true;
bool get isNotEmpty => _value.isNotEmpty;