RecordedCall constructor

const RecordedCall({
  1. required HttpMethod method,
  2. required String endpoint,
  3. Object? data,
  4. Map<String, dynamic>? params,
  5. Map<String, String>? headers,
  6. List<UploadFile> files = const [],
})

Implementation

const RecordedCall({
  required this.method,
  required this.endpoint,
  this.data,
  this.params,
  this.headers,
  this.files = const [],
});