disconnect method

  1. @override
Future<void> disconnect()
override

Revokes all of the scopes that the user granted.

Implementation

@override
Future<void> disconnect() async {
  await initialized;

  await _gisClient.disconnect();
}