GroupUpdate constructor

GroupUpdate({
  1. String? name,
  2. String? description,
  3. String? vATNumber,
  4. String? road,
  5. String? city,
  6. String? region,
  7. String? zipcode,
  8. String? nation,
  9. String? sdiCode,
  10. String? fiscalCode,
})

Returns a new GroupUpdate instance.

Implementation

GroupUpdate({
  this.name,
  this.description,
  this.vATNumber,
  this.road,
  this.city,
  this.region,
  this.zipcode,
  this.nation,
  this.sdiCode,
  this.fiscalCode,
});