findById method

Future<SystemLogData?> findById(
  1. int systemLogId
)

Implementation

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