rxNew method

void rxNew(
  1. List? val
)

Implementation

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