toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final destinationPhase = this.destinationPhase;
final disableRollbackIfRolloutPending =
this.disableRollbackIfRolloutPending;
final rolloutId = this.rolloutId;
final state = this.state;
final stateDesc = this.stateDesc;
return {
'destinationPhase': ?destinationPhase,
'disableRollbackIfRolloutPending': ?disableRollbackIfRolloutPending,
'rolloutId': ?rolloutId,
'state': ?state,
'stateDesc': ?stateDesc,
};
}