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