PartyBase constructor

PartyBase({
  1. required String name,
  2. required String taxId,
  3. required String address,
})

Constructor to initialize the basic details of the party.

Implementation

PartyBase({
  required this.name,
  required this.taxId,
  required this.address,
});