toJson method
Encodes this CockpitTestRetryOperationTemplate as a JSON object.
Implementation
@override
Object? toJson() => <String, Object?>{
'maxAttempts': maxAttempts,
'delayMs': delayMs,
'steps': steps.map((step) => step.toJson()).toList(),
};