HTTPConfig constructor

HTTPConfig({
  1. String? runId,
  2. String? domain,
  3. String? remoteIP,
  4. int? remotePort,
  5. String? userName,
  6. String? password,
  7. bool? ifHttps,
  8. String? description,
  9. bool? remotePortStatus,
})

Implementation

factory HTTPConfig({
  $core.String? runId,
  $core.String? domain,
  $core.String? remoteIP,
  $core.int? remotePort,
  $core.String? userName,
  $core.String? password,
  $core.bool? ifHttps,
  $core.String? description,
  $core.bool? remotePortStatus,
}) {
  final $result = create();
  if (runId != null) {
    $result.runId = runId;
  }
  if (domain != null) {
    $result.domain = domain;
  }
  if (remoteIP != null) {
    $result.remoteIP = remoteIP;
  }
  if (remotePort != null) {
    $result.remotePort = remotePort;
  }
  if (userName != null) {
    $result.userName = userName;
  }
  if (password != null) {
    $result.password = password;
  }
  if (ifHttps != null) {
    $result.ifHttps = ifHttps;
  }
  if (description != null) {
    $result.description = description;
  }
  if (remotePortStatus != null) {
    $result.remotePortStatus = remotePortStatus;
  }
  return $result;
}