InquiryAttributes constructor

InquiryAttributes({
  1. InquiryName? name,
  2. InquiryAddress? address,
  3. DateTime? birthdate,
})

Implementation

InquiryAttributes({
  this.name,
  this.address,
  this.birthdate,
});