Response constructor

Response({
  1. bool? status,
  2. dynamic data,
  3. String? message,
})

Implementation

Response({
  this.status,
  this.data,
  this.message,
});