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}) {
  return channel.invokeMethod<void>(
    'clearAuthCache',
    <String, String?>{'token': token},
  );
}