StatementLine constructor

const StatementLine({
  1. required String date,
  2. required String detail,
  3. String debit = '',
  4. String credit = '',
  5. String balance = '',
})

StatementLine API.

Implementation

const StatementLine({
  required this.date,
  required this.detail,
  this.debit = '',
  this.credit = '',
  this.balance = '',
});