toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final archiveTime = this.archiveTime;
final archived = this.archived;
final dataId = this.dataId;
final name = this.name;
final resourceAttributes = this.resourceAttributes;
final userId = this.userId;
return {
'archiveTime': ?archiveTime,
'archived': ?archived,
'dataId': ?dataId,
'name': ?name,
'resourceAttributes': ?resourceAttributes,
'userId': ?userId,
};
}