isNotEmpty property Null safety
Whether the string value is empty or not.
Returns false if the string value is null
Implementation
bool get isNotEmpty => _value?.isNotEmpty ?? false;
Whether the string value is empty or not.
Returns false if the string value is null
bool get isNotEmpty => _value?.isNotEmpty ?? false;