basePortService property

PortService basePortService

Implementation

static PortService get basePortService {
  PortService portService = PortService.create();
  portService.isLocal = true;
  portService.ip = "127.0.0.1";
  portService.port = 80;
  portService.info.addAll(baseInfo);
  return portService;
}