toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final config = this.config;
final expandedConfig = this.expandedConfig;
final id = this.id;
final imports = this.imports;
final insertTime = this.insertTime;
final layout = this.layout;
final manifestSizeBytes = this.manifestSizeBytes;
final manifestSizeLimitBytes = this.manifestSizeLimitBytes;
final name = this.name;
final selfLink = this.selfLink;
return {
'config': ?config,
'expandedConfig': ?expandedConfig,
'id': ?id,
'imports': ?imports,
'insertTime': ?insertTime,
'layout': ?layout,
'manifestSizeBytes': ?manifestSizeBytes,
'manifestSizeLimitBytes': ?manifestSizeLimitBytes,
'name': ?name,
'selfLink': ?selfLink,
};
}