containerType property

  1. @override
ContainerType get containerType
override

The configured container type for this collection.

Implementation

@override
ContainerType get containerType {
  try {
    return record.container;
  } catch(_) {
    return ContainerType.create<E,I>();
  }
}