delete method

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

Deletes this app and frees up system resources.

Once deleted, any plugin functionality using this app instance will throw an error.

Deleting the default app is not possible and throws an exception.

Implementation

@override
Future<void> delete() {
  // TODO: implement delete
  throw UnimplementedError();
}