clearAuthCache method

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

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

Implementation

@override
Future<void> clearAuthCache({String? token}) {
  return channel.invokeMethod<void>(
    'clearAuthCache',
    <String, String?>{'token': token},
  );
}