DeleteResponse constructor

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

Implementation

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