toJson method
Converts a PodSchedulingContextSpec instance to JSON data.
Implementation
Map<String, Object> toJson() {
final jsonData = <String, Object>{};
final tempPotentialNodes = potentialNodes;
final tempSelectedNode = selectedNode;
if (tempPotentialNodes != null) {
jsonData['potentialNodes'] = tempPotentialNodes;
}
if (tempSelectedNode != null) {
jsonData['selectedNode'] = tempSelectedNode;
}
return jsonData;
}