toJson method
Implementation
Map<String, dynamic> toJson() => {
'maxConcurrency': maxConcurrency,
if (timeout != null) 'timeout': timeout!.inMilliseconds,
if (retryPolicy != null) 'retryPolicy': retryPolicy!.toJson(),
'onError': onError.name,
'checkpointEnabled': checkpointEnabled,
if (extra.isNotEmpty) 'extra': extra,
};