Organization constructor

Organization({
  1. String? orgname,
  2. String? fullCompanyName,
  3. String? sdiCode,
  4. String? piva,
  5. String? fiscalCode,
  6. Address? address,
})

Returns a new Organization instance.

Implementation

Organization({
  this.orgname,
  this.fullCompanyName,
  this.sdiCode,
  this.piva,
  this.fiscalCode,
  this.address,
});