isEmpty property Null safety
Whether the string value is empty
Returns true if the string value is null
Implementation
bool get isEmpty => _value?.isEmpty ?? true;
Whether the string value is empty
Returns true if the string value is null
bool get isEmpty => _value?.isEmpty ?? true;