length property Null safety
The length of the string value.
Returns 0 if the string value is null
Implementation
int get length => _value?.length ?? 0;
The length of the string value.
Returns 0 if the string value is null
int get length => _value?.length ?? 0;