Request constructor

const Request({
  1. String? body,
  2. List<InvoiceSettingCustomField>? headers,
})

request_param

The request body and headers to be sent to the destination endpoint.

Implementation

const Request({
  this.body,
  this.headers,
});