formatWith method

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

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