toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (apt != null) 'apt': apt!.toJson(),
      if (deb != null) 'deb': deb!.toJson(),
      if (desiredState != null) 'desiredState': desiredState!,
      if (googet != null) 'googet': googet!.toJson(),
      if (msi != null) 'msi': msi!.toJson(),
      if (rpm != null) 'rpm': rpm!.toJson(),
      if (yum != null) 'yum': yum!.toJson(),
      if (zypper != null) 'zypper': zypper!.toJson(),
    };