formatWith method

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

Implementation

QueueChannel formatWith(Map<String, String> values) {
  return QueueChannel(
    queue: queue.formatWith(values),
    threadingMode: threadingMode?.formatWith(values),
    messageSchema: messageSchema == null ? null : Map<String, dynamic>.from(_formatJsonValue(messageSchema!, values) as Map),
    annotations: _formatStringMap(annotations, values),
  );
}