OrganizationInfo constructor

OrganizationInfo({
  1. PostalAddress? address,
  2. String? phoneNumber,
  3. String? registeredDomain,
})

Implementation

OrganizationInfo({
  this.address,
  this.phoneNumber,
  this.registeredDomain,
});