onStart method

  1. @override
Future<bool> onStart()
override

Callback when this executor is started. Returns true if successfully started, false otherwise.

Implementation

@override
Future<bool> onStart() async {
  // when an app task is started, create a UserTask and put it on the queue
  userTask = await AppTaskController().enqueue(this);
  return userTask != null;
}