logout method

Future<void> logout()

Implementation

Future<void> logout() async {
  try {
    if (await tokenFile.exists()) {
      await tokenFile.delete(recursive: true);
    }
  } catch (_) {}
}