removeMessage static method

Future<void> removeMessage(
  1. Message message
)

Removes the given message from the device's message stream.

Implementation

static Future<void> removeMessage(Message message) async {
  return _channel.invokeMethod('removeMessage', message.toMap());
}