onInit method
Called immediately after the widget is allocated in memory. You might use this to initialize something for the controller.
Implementation
@override
onInit() {
Get.put<ScheduleRoomStore>(ScheduleRoomStore());
_initCurrentUser();
groupedConferences = ScheduleRoomStore.to.groupedConferences;
ScheduleRoomStore.to.fetchConferenceList();
ConferenceListManager().addObserver(_conferenceListEventHandler);
scrollController.addListener(_scrollListener);
super.onInit();
}