toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ancestors = this.ancestors;
  final createTime = this.createTime;
  final description = this.description;
  final displayName = this.displayName;
  final labels = this.labels;
  final location = this.location;
  final platform = this.platform;
  final resource = this.resource;
  final system = this.system;
  final updateTime = this.updateTime;
  return {
    'ancestors': ?ancestors,
    'createTime': ?createTime,
    'description': ?description,
    'displayName': ?displayName,
    'labels': ?labels,
    'location': ?location,
    'platform': ?platform,
    'resource': ?resource,
    'system': ?system,
    'updateTime': ?updateTime,
  };
}