handle abstract method
Executes the job payload.
Implementations define the actual work performed when the job is handled by a worker isolate.
Example:
@override
Future<dynamic> handle() async {
return 'processed';
}
Implementation
Future<dynamic> handle();