Request constructor

Request(
  1. String method,
  2. String url, {
  3. dynamic body,
  4. Map<String, dynamic> parameters = const {},
  5. Map<String, String?> headers = const {},
  6. bool authenticated = true,
})

Implementation

Request(this.method, this.url,
    {this.body,
    this.parameters: const {},
    this.headers: const {},
    this.authenticated = true});