toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final maxRunningTime = this.maxRunningTime;
final maxWaitTime = this.maxWaitTime;
final priority = this.priority;
return {
'maxRunningTime': ?maxRunningTime,
'maxWaitTime': ?maxWaitTime,
'priority': ?priority,
};
}