startServices method

Future<void> startServices()

start service registered to dox this is internal core use only your app do not need to call this function

Implementation

Future<void> startServices() async {
  for (DoxService service in doxServices) {
    await service.setup();
  }
  _registerFormRequests();
  _registerRoute();
}