UserModel constructor

UserModel({
  1. int id = 0,
  2. String userPayloadId = "",
  3. String firstName = "",
  4. String lastName = "",
})

Implementation

UserModel({
  this.id = 0,
  this.userPayloadId = "",
  this.firstName = "",
  this.lastName = "",
});