ObjectStore constructor

ObjectStore({
  1. required String name,
  2. required KeyPath keyPath,
  3. required bool autoIncrement,
  4. required List<ObjectStoreIndex> indexes,
})

Implementation

ObjectStore(
    {required this.name,
    required this.keyPath,
    required this.autoIncrement,
    required this.indexes});