toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cluster = this.cluster;
final nodePool = this.nodePool;
final operation = this.operation;
final reason = this.reason;
final state = this.state;
return {
'cluster': ?cluster,
'nodePool': ?nodePool,
'operation': ?operation,
'reason': ?reason,
'state': ?state,
};
}