tryClear method
Clear set with error handling
Implementation
RxResult<void> tryClear() {
return RxResult.tryExecute(() {
if (value.isNotEmpty) {
value = <T>{};
}
}, 'clear set');
}
Clear set with error handling
RxResult<void> tryClear() {
return RxResult.tryExecute(() {
if (value.isNotEmpty) {
value = <T>{};
}
}, 'clear set');
}