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