LinkDetails constructor

LinkDetails({
  1. required String link,
  2. Map<String, String>? headers,
  3. Object? body,
  4. String method = 'GET',
  5. Map<String, dynamic>? queryParameters,
  6. ResponseType responseType = ResponseType.bytes,
})

Implementation

LinkDetails({
  required this.link,
  this.headers,
  this.body,
  this.method = 'GET',
  this.queryParameters,
  this.responseType = ResponseType.bytes,
});