call method

  1. @Deprecated('Use .values instead. This was kept for backwards compatibility. Will be removed in 3.0.0')
List<T> call([
  1. T? v
])

Implementation

@Deprecated('Use .values instead. This was kept for backwards compatibility. Will be removed in 3.0.0')
List<T> call([T? v]) {
  if (v != null) {
    add(v);
  }

  return values;
}