ResponseModel constructor

ResponseModel(
  1. String url,
  2. int? statusCode,
  3. String? statusMessage,
  4. Map<String, dynamic> headers,
  5. dynamic data,
  6. int timestamp,
)

Implementation

ResponseModel(this.url, this.statusCode, this.statusMessage, this.headers, this.data, this.timestamp);