call method

  1. @override
List<E> call([
  1. List<E>? newValue
])
override

Implementation

@override
List<E> call([List<E>? newValue]) {
  if (newValue != null) value = newValue;
  return _value;
}