Returns the user with the given id.
id
Returns null if no user with the given id exists.
null
User? findUserById(int id) { return state.firstWhereOrNull((user) => user.id == id); }