CommonSuccessResponse constructor

CommonSuccessResponse({
  1. bool? status,
  2. String? message,
})

Implementation

CommonSuccessResponse({
  this.status,
  this.message,
});