currentUserList property

List<SelectWrapper<U>> get currentUserList

Implementation

List<SelectWrapper<U>> get currentUserList {
  return [];
  // var data = _state._currentUserList;
  // if (data.isEmpty) {
  //   var first = _state._pagingCtrl.list.firstOrNull;
  //   if (first is SelectWrapper<U>) {
  //     data =
  //         _state._pagingCtrl.list.map((e) => e as SelectWrapper<U>).toList();
  //   }
  // }
  // return data;
}