ApiResponse<T> constructor

ApiResponse<T>({
  1. String? timestamp,
  2. int? code,
  3. String? status,
  4. String? message,
  5. T? data,
})

Implementation

ApiResponse({
  this.timestamp,
  this.code,
  this.status,
  this.message,
  this.data,
});