CommonRequestOptions constructor

CommonRequestOptions({
  1. Map<String, String>? headers,
  2. String contentType = 'application/json',
})

Implementation

CommonRequestOptions({
  this.headers,
  this.contentType = 'application/json',
});