close method
Stops the app and releases any resources associated with it.
Implementation
Future<void> close() async {
final client = await this.client;
client.close();
}
Stops the app and releases any resources associated with it.
Future<void> close() async {
final client = await this.client;
client.close();
}