ReceiptSource constructor

ReceiptSource({
  1. int? primaryId,
  2. int? secondaryId,
})

Implementation

ReceiptSource({ int? primaryId, int? secondaryId}) {
	this.primaryId = primaryId ?? 0;
	this.secondaryId = secondaryId ?? 0;
}