Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Jul 24, 2024
1 parent db0aaba commit bbbe8bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ class ObjectStoreNative extends ObjectStore {
}

@override
Future delete(key) {
Future delete(Object keyOrRange) {
return catchAsyncNativeError(() {
return idbObjectStore.delete(key);
return idbObjectStore.delete(keyOrRange);
});
}

Expand Down

0 comments on commit bbbe8bb

Please sign in to comment.