has method

  1. @override
Future<bool> has(
  1. String key
)
override

Checks if a key exists in storage.

Implementation

@override
Future<bool> has(String key) async {
  return _box.containsKey(key);
}