toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cancelReason = this.cancelReason;
  final eventAttemptStats = this.eventAttemptStats;
  final eventExecutionSnapshot = this.eventExecutionSnapshot;
  final eventExecutionSnapshotsSize = this.eventExecutionSnapshotsSize;
  final eventExecutionState = this.eventExecutionState;
  final eventRetriesFromBeginningCount = this.eventRetriesFromBeginningCount;
  final logFilePath = this.logFilePath;
  final networkAddress = this.networkAddress;
  final nextExecutionTime = this.nextExecutionTime;
  final ryeLockUnheldCount = this.ryeLockUnheldCount;
  return {
    'cancelReason': ?cancelReason,
    'eventAttemptStats': ?eventAttemptStats,
    'eventExecutionSnapshot': ?eventExecutionSnapshot,
    'eventExecutionSnapshotsSize': ?eventExecutionSnapshotsSize,
    'eventExecutionState': ?eventExecutionState,
    'eventRetriesFromBeginningCount': ?eventRetriesFromBeginningCount,
    'logFilePath': ?logFilePath,
    'networkAddress': ?networkAddress,
    'nextExecutionTime': ?nextExecutionTime,
    'ryeLockUnheldCount': ?ryeLockUnheldCount,
  };
}