edit method

Future<void> edit(
  1. String messageId,
  2. ChannelResponse response
)

Edit a previously sent message (if supported).

Implementation

Future<void> edit(String messageId, ChannelResponse response) {
  throw UnsupportedError('Editing not supported by this channel');
}