isEmpty property Null safety
Whether this value has no elements.
Example:
final emptyList = createEmptyListProperty<String>()
print(emptyList.isEmpty); // true;
Implementation
bool get isEmpty => _value.isEmpty;
Whether this value has no elements.
Example:
final emptyList = createEmptyListProperty<String>()
print(emptyList.isEmpty); // true;
bool get isEmpty => _value.isEmpty;