clearedCheckDummyData top-level property

List<ClearedCheckModel> clearedCheckDummyData
final

Implementation

final List<ClearedCheckModel> clearedCheckDummyData = [
  ClearedCheckModel(
    checkNumber: 'CHK001234567',
    draweeBankName: 'BDO Unibank Inc.',
    amount: 15000.00,
    checkDate: DateTime(2025, 7, 20),
    status: 'Cleared',
    remarks: 'Loan Payment - Housing',
    // Backward compatibility fields
    depositorName: 'John Smith',
    depositorAccount: '1001234567',
    depositorAddress: '123 Business St, City Center',
  ),
  ClearedCheckModel(
    checkNumber: 'CHK001234568',
    draweeBankName: 'Bank of the Philippine Islands',
    amount: 25000.00,
    checkDate: DateTime(2025, 7, 21),
    status: 'Cleared',
    remarks: 'Loan Payment - Auto',
    depositorName: 'Maria Garcia',
    depositorAccount: '1001234568',
    depositorAddress: '456 Commerce Ave, Downtown',
  ),
  ClearedCheckModel(
    checkNumber: 'CHK001234569',
    draweeBankName: 'Metrobank',
    amount: 8500.00,
    checkDate: DateTime(2025, 7, 22),
    status: 'Cleared',
    remarks: 'Loan Payment - Personal',
    depositorName: 'Robert Johnson',
    depositorAccount: '1001234569',
    depositorAddress: '789 Financial Blvd, Business District',
  ),
  ClearedCheckModel(
    checkNumber: 'CHK001234570',
    draweeBankName: 'Security Bank Corporation',
    amount: 12000.00,
    checkDate: DateTime(2025, 7, 23),
    status: 'Cleared',
    remarks: 'Loan Payment - Business',
    depositorName: 'Sarah Lee',
    depositorAccount: '1001234570',
    depositorAddress: '321 Banking St, Corporate Plaza',
  ),
  ClearedCheckModel(
    checkNumber: 'CHK001234571',
    draweeBankName: 'Philippine National Bank',
    amount: 30000.00,
    checkDate: DateTime(2025, 7, 24),
    status: 'Cleared',
    remarks: 'Loan Payment - Commercial',
    depositorName: 'Michael Brown',
    depositorAccount: '1001234571',
    depositorAddress: '654 Investment Rd, Financial Center',
  ),
];