PbList<E> constructor

PbList<E>({
  1. CheckFunc<E> check = _checkNotNull,
})

Implementation

PbList({CheckFunc<E> check = _checkNotNull})
    : _wrappedList = <E>[],
      _check = check;