toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attemptStats = this.attemptStats;
final eventExecutionSnapshotsSize = this.eventExecutionSnapshotsSize;
final executionSnapshots = this.executionSnapshots;
final state = this.state;
return {
'attemptStats': ?attemptStats,
'eventExecutionSnapshotsSize': ?eventExecutionSnapshotsSize,
'executionSnapshots': ?executionSnapshots,
'state': ?state,
};
}