toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final expectedNextState = this.expectedNextState;
final labels = this.labels;
final locations = this.locations;
final name = this.name;
final nextStateOfTags = this.nextStateOfTags;
final service = this.service;
final type = this.type;
return {
'expectedNextState': ?expectedNextState,
'labels': ?labels,
'locations': ?locations,
'name': ?name,
'nextStateOfTags': ?nextStateOfTags,
'service': ?service,
'type': ?type,
};
}