onInit method

  1. @override
Future<void> onInit()
override

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

Implementation

@override
Future<void> onInit() async {
  Log.debug('onInit()', '$runtimeType');

  status.value = RxStatus.loading();

  // TODO: Uncomment, when contacts are implemented.
  // _initPagination();
  // _initRemoteSubscription();

  super.onInit();
}