findUserById method

User? findUserById(
  1. int id
)

Returns the user with the given id.

Returns null if no user with the given id exists.

Implementation

User? findUserById(int id) {
  return state.firstWhereOrNull((user) => user.id == id);
}