toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final distributions = this.distributions;
  final package = this.package;
  final version = this.version;
  final windowsUpdate = this.windowsUpdate;
  return {
    'distributions': ?distributions,
    'package': ?package,
    'version': ?version,
    'windowsUpdate': ?windowsUpdate,
  };
}