clearAuthCache method

  1. @override
Future<void> clearAuthCache({
  1. required String token,
})
override

Clears any cached information that the plugin may be holding on to.

Implementation

@override
Future<void> clearAuthCache({required String token}) async {
  await initialized;

  await _gisClient.clearAuthCache();
}