clear method

Future<bool> clear()

清空所有数据

Implementation

Future<bool> clear() async {
  await ensureInitialized();
  return _prefs?.clear() ?? false;
}