onInit method

  1. @override
void onInit()
override

Called immediately after the widget is allocated in memory. You might use this to initialize something for the controller.

Implementation

@override
void onInit() {
  _chatsSubscription = _chatService.chats.changes.listen((e) {
    switch (e.op) {
      case OperationKind.added:
        // No-op.
        break;

      case OperationKind.removed:
        if (e.key == chatId) {
          pop?.call();
        }
        break;

      case OperationKind.updated:
        // No-op.
        break;
    }
  });

  super.onInit();
}