formatWith method
Implementation
MessagingChannel formatWith(Map<String, String> values) {
return MessagingChannel(
protocol: protocol.formatWith(values),
prompts: prompts.map((entry) => entry.formatWith(values)).toList(),
annotations: _formatStringMap(annotations, values),
);
}