toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final executionId = this.executionId;
  final historyId = this.historyId;
  final projectId = this.projectId;
  final stepId = this.stepId;
  return {
    'executionId': ?executionId,
    'historyId': ?historyId,
    'projectId': ?projectId,
    'stepId': ?stepId,
  };
}