putMany<T> method

  1. @override
Future<List<int>> putMany<T>(
  1. List<T> objects
)
override

Implementation

@override
Future<List<int>> putMany<T>(List<T> objects) async {
  try {
    _ensureStoreInitialized();
    final box = _store!.box<T>();
    return box.putMany(objects);
  } catch (e) {
    throw DatabaseBridgeException(error: e);
  }
}