toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (destinationPhase != null) 'destinationPhase': destinationPhase!,
  if (disableRollbackIfRolloutPending != null)
    'disableRollbackIfRolloutPending': disableRollbackIfRolloutPending!,
  if (rolloutId != null) 'rolloutId': rolloutId!,
  if (state != null) 'state': state!,
  if (stateDesc != null) 'stateDesc': stateDesc!,
};