initState method

  1. @protected
void initState(
  1. GetBuilderState<T> state
)

Implementation

@protected
void initState(GetBuilderState<T> state) {
  Get.log(
    '${toString()} initState',
    isError: false,
  );
  //controller.initConnectivity();
  if (Get.isPrepared<T>(tag: tag)) {
    Get.replace<T>(_baseController, tag: tag);
  } else {
    Get.lazyPut(() => _baseController);
  }
}