findUserById method

  1. @override
Future<FindUserResponse> findUserById(
  1. String userId
)

Returns a FindUserResponse for user with userId

Upon success a User object is provided and error is set to null

In case of error a ResponseError is set and no User is provided

Implementation

@override
Future<FindUserResponse> findUserById(String userId) {
  return _siteClient.findUserById(userId);
}