toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final assetStatus = this.assetStatus;
final createTime = this.createTime;
final description = this.description;
final displayName = this.displayName;
final labels = this.labels;
final metastore = this.metastore;
final metastoreStatus = this.metastoreStatus;
final name = this.name;
final serviceAccount = this.serviceAccount;
final state = this.state;
final uid = this.uid;
final updateTime = this.updateTime;
return {
'assetStatus': ?assetStatus,
'createTime': ?createTime,
'description': ?description,
'displayName': ?displayName,
'labels': ?labels,
'metastore': ?metastore,
'metastoreStatus': ?metastoreStatus,
'name': ?name,
'serviceAccount': ?serviceAccount,
'state': ?state,
'uid': ?uid,
'updateTime': ?updateTime,
};
}