toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final displayName = this.displayName;
final documentIsFolder = this.documentIsFolder;
final name = this.name;
final propertyDefinitions = this.propertyDefinitions;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'description': ?description,
'displayName': ?displayName,
'documentIsFolder': ?documentIsFolder,
'name': ?name,
'propertyDefinitions': ?propertyDefinitions,
'updateTime': ?updateTime,
};
}