UserVo constructor

UserVo({
  1. int? status,
  2. String? message,
  3. String? id,
  4. String? token,
  5. String? role,
  6. Record? record,
})

Implementation

UserVo({
  this.status,
  this.message,
  this.id,
  this.token,
  this.role,
  this.record,
});