value property

String value

Gets or sets the value.

Implementation

String get value {
  if (_radioButtonListItemHelper.isLoadedField) {
    _radioButtonListItemHelper._value =
        _radioButtonListItemHelper.getItemValue(
            _radioButtonListItemHelper.dictionary!,
            _radioButtonListItemHelper.crossTable);
  }
  return _radioButtonListItemHelper._value!;
}
void value=(String value)

Implementation

set value(String value) {
  if (value.isEmpty) {
    ArgumentError.value('value should not be empty');
  }
  if (_radioButtonListItemHelper.isLoadedField) {
    _radioButtonListItemHelper._setItemValue(value);
  }
  _radioButtonListItemHelper._value = value;
}