toList method

List<T> toList({
  1. bool growable = true,
})

Implementation

List<T> toList({bool growable = true}) {
  RxTracking.track(this);
  return value.toList(growable: growable);
}