getPending method Null safety
Gets all pending BackupModel
A BackupModel
is considered pending if BackupModel.timestamp is null.
Implementation
List<BackupModel> getPending() =>
_select(whereStmt: 'WHERE $columnTimestamp IS NULL');
Gets all pending BackupModel
A BackupModel
is considered pending if BackupModel.timestamp is null.
List<BackupModel> getPending() =>
_select(whereStmt: 'WHERE $columnTimestamp IS NULL');