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