AddAllIfNotExist method

List AddAllIfNotExist(
  1. List newList
)

Implementation

List AddAllIfNotExist(List newList) {
  newList.forEach((element) {
    this.AddIfNotExist(element);
  });

  return this;
}