DatabaseWithObjectStores constructor

DatabaseWithObjectStores({
  1. required String name,
  2. required num version,
  3. required List<ObjectStore> objectStores,
})

Implementation

DatabaseWithObjectStores({
  required this.name,
  required this.version,
  required this.objectStores,
});