findUserById abstract method

Future<Map<String, dynamic>?> findUserById(
  1. dynamic id,
  2. String table,
  3. String primaryKey
)

Finds a user by ID

id The user ID table The table name primaryKey The primary key field name Returns the user record if found, null otherwise

Implementation

Future<Map<String, dynamic>?> findUserById(
  dynamic id,
  String table,
  String primaryKey,
);