RecordedCall constructor
const
RecordedCall({
- required HttpMethod method,
- required String endpoint,
- Object? data,
- Map<
String, dynamic> ? params, - Map<
String, String> ? headers, - List<
UploadFile> files = const [],
Implementation
const RecordedCall({
required this.method,
required this.endpoint,
this.data,
this.params,
this.headers,
this.files = const [],
});