UrlInfoModel constructor

UrlInfoModel({
  1. String? scheme,
  2. String? host,
  3. int? port,
  4. String? path,
  5. String? query,
  6. Map? queryParameters,
})

Implementation

UrlInfoModel(
    {this.scheme,
    this.host,
    this.port,
    this.path,
    this.query,
    this.queryParameters});