AddIfNotExist method

List AddIfNotExist(
  1. dynamic element
)

Implementation

List AddIfNotExist(dynamic element) {
  if(this.firstWhere((other) => other == element) != null)
    this.add(element);

  return this;
}