rxAddAll method
Implementation
void rxAddAll(List<dynamic>? val) {
if (val != null) {
(this).addAll(val);
} else {
(this)([]);
}
(this).refresh();
}
void rxAddAll(List<dynamic>? val) {
if (val != null) {
(this).addAll(val);
} else {
(this)([]);
}
(this).refresh();
}