UserUpdateModel constructor

UserUpdateModel({
  1. String? firstName,
  2. String? lastName,
  3. String? email,
})

Implementation

UserUpdateModel({
  this.firstName,
  this.lastName,
  this.email,
});