PersonalInfoResponse constructor

const PersonalInfoResponse({
  1. required String id,
  2. dynamic age,
  3. dynamic weight,
  4. dynamic height,
  5. dynamic biologicalSex,
  6. dynamic email,
})

Implementation

const PersonalInfoResponse({
  required this.id,
  this.age,
  this.weight,
  this.height,
  this.biologicalSex,
  this.email,
});