MockRequest constructor

MockRequest({
  1. required String endpointId,
  2. Map<String, dynamic>? queryParams,
  3. Map<String, String>? pathParams,
  4. dynamic body,
  5. required DateTime timestamp,
})

Implementation

MockRequest({
  required this.endpointId,
  this.queryParams,
  this.pathParams,
  this.body,
  required this.timestamp,
});