initServices method

void initServices(
  1. List<GetxService> services
)

Implementation

void initServices(final List<GetxService> services) {
  for (final GetxService service in services) {
    Get.put<GetxService>(service, permanent: true);
  }
}