getPending method Null safety

List<BackupModel> getPending()

Gets all pending BackupModel

A BackupModel is considered pending if BackupModel.timestamp is null.

Implementation

List<BackupModel> getPending() =>
    _select(whereStmt: 'WHERE $columnTimestamp IS NULL');