ApiResponse constructor

ApiResponse({
  1. bool? status,
  2. String? message,
  3. dynamic response,
})

Implementation

ApiResponse({
  this.status,
  this.message,
  this.response,
});