UAccountingBreakdownItem constructor

UAccountingBreakdownItem({
  1. required int tag,
  2. required String tagName,
  3. required double amount,
  4. required int count,
})

Implementation

UAccountingBreakdownItem({
  required this.tag,
  required this.tagName,
  required this.amount,
  required this.count,
});