onTaskRemoved method
override
Handle the task being swiped away in the task manager (Android).
Implementation
@override
Future<void> onTaskRemoved() async {
await stop();
// Signal the OS that the task is finished
await SystemNavigator.pop();
}