RequestData constructor

RequestData(
  1. String route, {
  2. Map<String, dynamic>? json,
  3. List<String>? multipartFileNames = const [],
  4. Duration? timeout,
  5. bool returnsBinary = false,
  6. bool? logIfFailed,
})

Implementation

RequestData(
  this.route, {
  this.json,
  this.multipartFileNames = const [],
  this.timeout,
  this.returnsBinary = false,
  this.logIfFailed,
});