ReportFinancial<C extends ClosingRangeAbstract> constructor
ReportFinancial<C extends ClosingRangeAbstract> ({})
Implementation
ReportFinancial({
required List<TicketWeebi> tickets,
required List<C> closingsObjects,
required DateTime startDate,
required DateTime endDate,
required this.objectId,
}) : emptyFlows = List<FinFlow>.generate(
TicketType.financialTypes.length,
(index) => FinFlow(
TicketType.financialTypes[index].toString(),
sumTickets: 0,
sumClosings: 0,
),
),
super(
tickets,
closingsObjects,
startDate,
endDate,
);