clear method

Future<void> clear()

Delete raw value

Implementation

Future<void> clear() async => await storage.delete(
  key: key,
  iOptions: IOSOptions(
    synchronizable: false,
    accessibility: KeychainAccessibility.unlocked_this_device,
  ),
);