toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final fingerprint = this.fingerprint;
  final id = this.id;
  final insertTime = this.insertTime;
  final labels = this.labels;
  final manifest = this.manifest;
  final name = this.name;
  final operation = this.operation;
  final selfLink = this.selfLink;
  final target = this.target;
  final update = this.update;
  final updateTime = this.updateTime;
  return {
    'description': ?description,
    'fingerprint': ?fingerprint,
    'id': ?id,
    'insertTime': ?insertTime,
    'labels': ?labels,
    'manifest': ?manifest,
    'name': ?name,
    'operation': ?operation,
    'selfLink': ?selfLink,
    'target': ?target,
    'update': ?update,
    'updateTime': ?updateTime,
  };
}