toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (apt != null) 'apt': apt!,
  if (goo != null) 'goo': goo!,
  if (migInstancesAllowed != null)
    'migInstancesAllowed': migInstancesAllowed!,
  if (postStep != null) 'postStep': postStep!,
  if (preStep != null) 'preStep': preStep!,
  if (rebootConfig != null) 'rebootConfig': rebootConfig!,
  if (windowsUpdate != null) 'windowsUpdate': windowsUpdate!,
  if (yum != null) 'yum': yum!,
  if (zypper != null) 'zypper': zypper!,
};