From 5bec3b458737a96f93816a171b82d270602fd89c Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Tue, 9 Aug 2022 15:49:40 +0200 Subject: [PATCH] docs: Add note about events to the example --- example/omemo_dart_example.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/example/omemo_dart_example.dart b/example/omemo_dart_example.dart index f27f021..be83326 100644 --- a/example/omemo_dart_example.dart +++ b/example/omemo_dart_example.dart @@ -150,5 +150,6 @@ void main() async { // - subscribe to the session manager's `eventStream`. There, events get triggered // everytime a ratchet changes, our own device changes or the internal ratchet map // gets changed. This give finer control over the the serialisation. The session - // manager can then be restored using its constructor. + // manager can then be restored using its constructor. For a list of events, see + // lib/src/omemo/events.dart. }