clearAllAuthCredentials method

Future<void> clearAllAuthCredentials()

Removes all the HTTP auth credentials saved in the database.

Implementation

Future<void> clearAllAuthCredentials() async {
  Map<String, dynamic> args = <String, dynamic>{};
  await _channel.invokeMethod('clearAllAuthCredentials', args);
}