initialize method
Implementation
Future<void> initialize() async {
if (_initialized || _disposed) return;
_initialized = true;
_controller.getMessageListObs().updateMessageUnreadCount(0);
await _controller.getMessageListObs().getMessageList();
if (_disposed) return;
await _controller.getMessageListObs().getGroupNotification();
}