InvoiceSender constructor

InvoiceSender({
  1. int? nihii,
  2. String? bic,
  3. String? iban,
  4. int? bce,
  5. String? ssin,
  6. String? lastName,
  7. String? firstName,
  8. int? phoneNumber,
  9. int? conventionCode,
  10. bool isSpecialist = false,
})

Returns a new InvoiceSender instance.

Implementation

InvoiceSender({
  this.nihii,
  this.bic,
  this.iban,
  this.bce,
  this.ssin,
  this.lastName,
  this.firstName,
  this.phoneNumber,
  this.conventionCode,
  this.isSpecialist = false,
});