formatWith method

HeartbeatSpec formatWith(
  1. Map<String, String> values
)

Implementation

HeartbeatSpec formatWith(Map<String, String> values) {
  return HeartbeatSpec(
    queue: queue.formatWith(values),
    threadId: threadId?.formatWith(values),
    prompt: prompt.map((entry) => entry.formatWith(values)).toList(),
    minutes: minutes,
  );
}