close method

Future<void> close()

Stops the app and releases any resources associated with it.

Implementation

Future<void> close() async {
  final client = await credential.client;
  client.close();
}