findById method
Implementation
Future<SystemLogData?> findById(int systemLogId) async {
return await (db.select(
db.systemLog,
)..where((e) => e.id.equals(systemLogId))).getSingleOrNull();
}
Future<SystemLogData?> findById(int systemLogId) async {
return await (db.select(
db.systemLog,
)..where((e) => e.id.equals(systemLogId))).getSingleOrNull();
}