ProfilePutBody constructor

ProfilePutBody({
  1. String? name,
  2. String? surname,
  3. String? socialSecurityNo,
})

Implementation

ProfilePutBody({
  this.name,
  this.surname,
  this.socialSecurityNo,
});