BooleanResponseEntity constructor

BooleanResponseEntity({
  1. bool? status,
  2. String? message,
  3. int? statusCode,
  4. bool? data,
})

Implementation

BooleanResponseEntity({
  this.status,
  this.message,
  this.statusCode,
  this.data,
});