NiceInvoiceParty constructor

const NiceInvoiceParty({
  1. required String name,
  2. String? address,
  3. String? email,
  4. String? phone,
})

Implementation

const NiceInvoiceParty({
  required this.name,
  this.address,
  this.email,
  this.phone,
});