toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final entryId = this.entryId;
final exception = this.exception;
final name = this.name;
final navigationInfo = this.navigationInfo;
final routine = this.routine;
final state = this.state;
final step = this.step;
final stepEntryMetadata = this.stepEntryMetadata;
final stepType = this.stepType;
final updateTime = this.updateTime;
final variableData = this.variableData;
return {
'createTime': ?createTime,
'entryId': ?entryId,
'exception': ?exception,
'name': ?name,
'navigationInfo': ?navigationInfo,
'routine': ?routine,
'state': ?state,
'step': ?step,
'stepEntryMetadata': ?stepEntryMetadata,
'stepType': ?stepType,
'updateTime': ?updateTime,
'variableData': ?variableData,
};
}