toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final archiveType = this.archiveType;
  final components = this.components;
  final distribution = this.distribution;
  final gpgKey = this.gpgKey;
  final uri = this.uri;
  return {
    'archiveType': ?archiveType,
    'components': ?components,
    'distribution': ?distribution,
    'gpgKey': ?gpgKey,
    'uri': ?uri,
  };
}