getPending method Null safety

List<TransactionModel> getPending()

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);
}