URLPatternResult constructor

Implementation

factory URLPatternResult({
  _i2.Object? inputs,
  _i3.URLPatternComponentResult? protocol,
  _i3.URLPatternComponentResult? username,
  _i3.URLPatternComponentResult? password,
  _i3.URLPatternComponentResult? hostname,
  _i3.URLPatternComponentResult? port,
  _i3.URLPatternComponentResult? pathname,
  _i3.URLPatternComponentResult? search,
  _i3.URLPatternComponentResult? hash,
}) =>
    URLPatternResult._(
      inputs: inputs ?? _i6.undefined,
      protocol: protocol ?? _i6.undefined,
      username: username ?? _i6.undefined,
      password: password ?? _i6.undefined,
      hostname: hostname ?? _i6.undefined,
      port: port ?? _i6.undefined,
      pathname: pathname ?? _i6.undefined,
      search: search ?? _i6.undefined,
      hash: hash ?? _i6.undefined,
    );