getUser method

FutureOr<RxUser?> getUser(
  1. UserId id
)

Returns a RxUser identified by the provided id, if any.

Implementation

FutureOr<RxUser?> getUser(UserId id) => _userService.get(id);