removeAllFailedMessages method

Future<void> removeAllFailedMessages()

Removes all failed messages of this MessageCollection. @since 4.2.0

Implementation

Future<void> removeAllFailedMessages() async {
  sbLog.i(StackTrace.current);
  await chat.dbManager.removeAllFailedMessages(
    channelType: ChannelType.group,
    channelUrl: channel.channelUrl,
  );
}