DeleteUserResponse constructor

DeleteUserResponse({
  1. bool success = false,
  2. String? error,
})

Implementation

DeleteUserResponse({
  this.success = false,
  this.error,
});