allowReroutingEvent property
Allow sending re-routing events.
Implementation
bool? get allowReroutingEvent {
final String? response = _config[DSPrefKeysPosition.allowReroutingEvent];
if (response == null) {
return null;
}
if (response == '1') {
return true;
} else {
return false;
}
}
Allow sending re-routing events.
Implementation
set allowReroutingEvent(final bool? value) {
if (value != null) {
_config[DSPrefKeysPosition.allowReroutingEvent] = value ? '1' : '0';
} else {
_config.remove(DSPrefKeysPosition.allowReroutingEvent);
}
}