URLPatternInit constructor

URLPatternInit({
  1. String? protocol,
  2. String? username,
  3. String? password,
  4. String? hostname,
  5. String? port,
  6. String? pathname,
  7. String? search,
  8. String? hash,
  9. String? baseURL,
})

Implementation

factory URLPatternInit({
  _i2.String? protocol,
  _i2.String? username,
  _i2.String? password,
  _i2.String? hostname,
  _i2.String? port,
  _i2.String? pathname,
  _i2.String? search,
  _i2.String? hash,
  _i2.String? baseURL,
}) =>
    URLPatternInit._(
      protocol: protocol,
      username: username,
      password: password,
      hostname: hostname,
      port: port,
      pathname: pathname,
      search: search,
      hash: hash,
      baseURL: baseURL,
    );