ActivityScheduledEventDetails constructor

ActivityScheduledEventDetails({
  1. required String resource,
  2. int? heartbeatInSeconds,
  3. String? input,
  4. HistoryEventExecutionDataDetails? inputDetails,
  5. int? timeoutInSeconds,
})

Implementation

ActivityScheduledEventDetails({
  required this.resource,
  this.heartbeatInSeconds,
  this.input,
  this.inputDetails,
  this.timeoutInSeconds,
});