formatWith method

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

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