wpLogout method

Future<void> wpLogout()

Logs out the user by deleting the user token from the local storage

Implementation

Future<void> wpLogout() async {
  await NyStorage.delete(WPJsonAPI.storageKey());
}