findById static method

  1. @Deprecated('Will be removed in 2.0.0. Use: db.findById instead.')
Future<UserInfo?> findById(
  1. Session session,
  2. int id
)

Implementation

@Deprecated('Will be removed in 2.0.0. Use: db.findById instead.')
static Future<UserInfo?> findById(
  _i1.Session session,
  int id,
) async {
  return session.db.findById<UserInfo>(id);
}