toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accessControl = this.accessControl;
  final finalProperties = this.finalProperties;
  final id = this.id;
  final insertTime = this.insertTime;
  final manifest = this.manifest;
  final name = this.name;
  final properties = this.properties;
  final type = this.type;
  final update = this.update;
  final updateTime = this.updateTime;
  final url = this.url;
  final warnings = this.warnings;
  return {
    'accessControl': ?accessControl,
    'finalProperties': ?finalProperties,
    'id': ?id,
    'insertTime': ?insertTime,
    'manifest': ?manifest,
    'name': ?name,
    'properties': ?properties,
    'type': ?type,
    'update': ?update,
    'updateTime': ?updateTime,
    'url': ?url,
    'warnings': ?warnings,
  };
}