soaDummyData top-level property
Implementation
final List<SoaModel> soaDummyData = [
SoaModel(
transactionDate: DateTime(2024, 6, 1, 9, 30),
transactionCode: 'DEP',
debit: 800.0,
credit: 0.00,
tdInterestEarned: 0,
runningBalance: 500.0,
branch: 'Main Branch',
tellerId: 'T100',
checkNo: 'CHK1001',
particulars: 'Initial deposit',
),
SoaModel(
transactionDate: DateTime(2024, 6, 2, 10, 15),
transactionCode: 'WDL',
debit: 0.00,
credit: 200.0,
runningBalance: 1000.0,
tdInterestEarned: 1.23456,
branch: 'Main Branch',
tellerId: 'T101',
checkNo: 'CHK1002',
particulars: 'ATM withdrawal',
createdAt: DateTime(2024, 6, 2, 10, 15),
),
SoaModel(
transactionDate: DateTime(2024, 6, 3, 14, 45),
transactionCode: 'DEP',
debit: 500.0,
credit: 0.00,
runningBalance: 500.0,
tdInterestEarned: 2.30,
branch: 'Main Branch',
tellerId: 'T102',
checkNo: 'CHK1003',
particulars: 'Salary deposit',
createdAt: DateTime(2024, 6, 3, 14, 45),
),
SoaModel(
transactionDate: DateTime(2024, 6, 4, 16, 0),
transactionCode: 'WDL',
debit: 0.00,
credit: 500.0,
runningBalance: 1000.0,
tdInterestEarned: 1.555,
branch: 'Main Branch',
tellerId: 'T103',
checkNo: 'CHK1004',
particulars: 'Cash withdrawal',
createdAt: DateTime(2024, 6, 4, 16, 0),
),
SoaModel(
transactionDate: DateTime(2024, 6, 4, 16, 0),
transactionCode: 'WDL',
debit: 0.00,
credit: 300.0,
runningBalance: 1300.0,
tdInterestEarned: 12.00,
branch: 'Main Branch',
tellerId: 'T104',
checkNo: 'CHK1004',
particulars: 'Cash withdrawal',
createdAt: DateTime(2024, 6, 4, 16, 0),
),
];