toJson method
Converts a PodReadinessGate instance to JSON data.
Implementation
Map<String, Object> toJson() {
final jsonData = <String, Object>{};
final tempConditionType = conditionType;
jsonData['conditionType'] = tempConditionType;
return jsonData;
}