formatWith method
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,
);
}