URLPatternInit constructor
URLPatternInit({})
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,
);