FileDebtSummary constructor

const FileDebtSummary({
  1. required String filePath,
  2. required int itemCount,
  3. required double totalCost,
  4. required Map<DebtType, int> countByType,
})

Implementation

const FileDebtSummary({
  required this.filePath,
  required this.itemCount,
  required this.totalCost,
  required this.countByType,
});