Url constructor

  1. @JsonSerializable(explicitToJson: true, anyMap: true, includeIfNull: false)
const Url({
  1. String? raw,
  2. String? protocol,
  3. List<String>? host,
  4. List<String>? path,
  5. List<Query>? query,
})

Implementation

@JsonSerializable(
  explicitToJson: true,
  anyMap: true,
  includeIfNull: false,
)
const factory Url({
  String? raw,
  String? protocol,
  List<String>? host,
  List<String>? path,
  List<Query>? query,
}) = _Url;