HiveList<E extends HiveObjectMixin> constructor

HiveList<E extends HiveObjectMixin>(
  1. Box box, {
  2. List<E>? objects,
})

Create a new HiveList which can contain HiveObjects from box.

Implementation

factory HiveList(Box box, {List<E>? objects}) =>
    HiveListImpl(box, objects: objects);