We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Both boxExists and deleteBoxFromDisk have an optional named path parameter in HiveImpl:
boxExists
deleteBoxFromDisk
path
HiveImpl
Future<void> deleteBoxFromDisk(String name, {String? path}) async { //... } Future<bool> boxExists(String name, {String? path}) async { //.. }
However, HiveInterface does not contain these parameter and as such they cannot be used:
HiveInterface
Future<void> deleteBoxFromDisk(String name); Future<bool> boxExists(String name);
https://github.com/hivedb/hive/blob/413ae3594f7142eb8b4b428f60c5c090d12d0799/hive/lib/src/hive.dart#L54
The text was updated successfully, but these errors were encountered:
Should be a small non-breaking change as the implementation is already correct. I can create a PR if necessary
Sorry, something went wrong.
No branches or pull requests
Both
boxExists
anddeleteBoxFromDisk
have an optional namedpath
parameter inHiveImpl
:However,
HiveInterface
does not contain these parameter and as such they cannot be used:https://github.com/hivedb/hive/blob/413ae3594f7142eb8b4b428f60c5c090d12d0799/hive/lib/src/hive.dart#L54
The text was updated successfully, but these errors were encountered: