getValue method

Option<String> getValue()

Implementation

Option<String> getValue() => option(
    (_assigned && (_maxLength == -1 || (_value.length <= _maxLength))),
    _value);