ResponseInfo constructor

ResponseInfo({
  1. String? requestId,
  2. int? timeStamp,
  3. int? statusCode,
  4. String? statusReason,
  5. Map<String, dynamic>? headers,
  6. dynamic body,
})

Implementation

ResponseInfo({
  this.requestId,
  this.timeStamp,
  this.statusCode,
  this.statusReason,
  this.headers,
  this.body,
});