FunctionTask constructor
FunctionTask({
- String? name,
- String? description,
- VoidFunction? function,
Create a function task that executed function when resumed.
Implementation
FunctionTask({super.name, super.description, this.function});