POST constructor

const POST({
  1. String? host,
  2. String? url,
})

Implementation

const POST({
  String? host,
  String? url,
}) : super(host: host, method: HttpMethod.post, url: url);