clearAuthCache method
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},
);
}