onTaskRemoved method

  1. @override
Future<void> onTaskRemoved()
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();
}