InvoiceAggregate constructor
InvoiceAggregate({})
Implementation
InvoiceAggregate({
required String aggregateId,
required String aggregateType,
required EventStore eventStore,
}) : super(aggregateId: aggregateId, aggregateType: aggregateType, eventStore: eventStore) {
registerHandlers();
}