Request constructor

  1. @JsonSerializable(explicitToJson: true, anyMap: true, includeIfNull: false)
const Request({
  1. String? method,
  2. List<Header>? header,
  3. Body? body,
  4. Url? url,
})

Implementation

@JsonSerializable(
  explicitToJson: true,
  anyMap: true,
  includeIfNull: false,
)
const factory Request({
  String? method,
  List<Header>? header,
  Body? body,
  Url? url,
}) = _Request;