formatWith method
Implementation
ChannelsSpec formatWith(Map<String, String> values) {
return ChannelsSpec(
email: email.map((entry) => entry.formatWith(values)).toList(),
messaging: messaging.map((entry) => entry.formatWith(values)).toList(),
queue: queue.map((entry) => entry.formatWith(values)).toList(),
toolkit: toolkit.map((entry) => entry.formatWith(values)).toList(),
);
}