getPending method Null safety
Gets all the transactions that were not commited yet. See commit.
Implementation
List<TransactionModel> getPending() {
String whereStmt = 'WHERE $columnBlockId IS NULL';
return _select(whereStmt: whereStmt);
}
Gets all the transactions that were not commited yet. See commit.
List<TransactionModel> getPending() {
String whereStmt = 'WHERE $columnBlockId IS NULL';
return _select(whereStmt: whereStmt);
}