findById static method

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

Implementation

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