clear method

Future<bool> clear()

Implementation

Future<bool> clear() async {
  await _initialize();
  _storage?.clear();
  return true;
}