HttpConfig constructor

HttpConfig({
  1. HttpState? httpEnabledState,
})

Implementation

factory HttpConfig({
  HttpState? httpEnabledState,
}) {
  final $result = create();
  if (httpEnabledState != null) {
    $result.httpEnabledState = httpEnabledState;
  }
  return $result;
}