* createOutgoingMessage exposes the OutgoingMessage constructor * via BaseBot. This simply means one can create their own * OutgoingMessage object using any bot object. They can then compose * it with all its helper functions * * This is the static version of this method * * @pa
(message)
| 153 | * all the helper functions from OutgoingMessage |
| 154 | */ |
| 155 | static createOutgoingMessage(message) { |
| 156 | return new OutgoingMessage(message); |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * createOutgoingMessage exposes the OutgoingMessage constructor |
no outgoing calls
no test coverage detected