TrayRequest<T> constructor

TrayRequest<T>({
  1. String url = '/',
  2. Map<String, String?>? params,
  3. TrayRequestBody? body,
  4. MakeRequestMethod method = MakeRequestMethod.get,
  5. Map<String, String>? headers,
})

Implementation

TrayRequest({
  this.url = '/',
  this.params,
  this.body,
  this.method = MakeRequestMethod.get,
  this.headers,
});