toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final checkpointTaskNumber = this.checkpointTaskNumber;
final clientId = this.clientId;
final conditionResults = this.conditionResults;
final diffParams = this.diffParams;
final eventExecutionInfoId = this.eventExecutionInfoId;
final eventExecutionSnapshotId = this.eventExecutionSnapshotId;
final eventExecutionSnapshotMetadata = this.eventExecutionSnapshotMetadata;
final eventParams = this.eventParams;
final exceedMaxSize = this.exceedMaxSize;
final snapshotTime = this.snapshotTime;
final taskExecutionDetails = this.taskExecutionDetails;
final taskName = this.taskName;
final workflowName = this.workflowName;
return {
'checkpointTaskNumber': ?checkpointTaskNumber,
'clientId': ?clientId,
'conditionResults': ?conditionResults,
'diffParams': ?diffParams,
'eventExecutionInfoId': ?eventExecutionInfoId,
'eventExecutionSnapshotId': ?eventExecutionSnapshotId,
'eventExecutionSnapshotMetadata': ?eventExecutionSnapshotMetadata,
'eventParams': ?eventParams,
'exceedMaxSize': ?exceedMaxSize,
'snapshotTime': ?snapshotTime,
'taskExecutionDetails': ?taskExecutionDetails,
'taskName': ?taskName,
'workflowName': ?workflowName,
};
}