isEmpty property Null safety

bool isEmpty

Whether this value has no elements.

Example:

final emptyList = createEmptyListProperty<String>()
print(emptyList.isEmpty); // true;

Implementation

bool get isEmpty => _value.isEmpty;