start method

void start()

Implementation

void start(){
  if(startCallBack != null){
    isLoading = true;
    startCallBack?.call();
  }
}