RequestInfo constructor

RequestInfo({
  1. String? requestId,
  2. int? timeStamp,
  3. Map<String, dynamic>? headers,
  4. String? method,
  5. String? uri,
  6. dynamic body,
})

Implementation

RequestInfo({
  this.requestId,
  this.timeStamp,
  this.headers,
  this.method,
  this.uri,
  this.body,
});