deleteSubscriptionMessages method

Future<void> deleteSubscriptionMessages(
  1. String topic
)
override

Implementation

Future<void> deleteSubscriptionMessages(String topic) async {
  messageRecords.remove(topic);
  await persist();
}