TaskResult.retryLater constructor
Task needs to retry after a custom delay.
Ignores the RetryPolicy and reschedules the task after delay.
Useful for rate-limiting or server-side backoff instructions.
Implementation
const factory TaskResult.retryLater(
Duration delay, {
Map<String, dynamic>? data,
}) = TaskRetryLater;