getFullUser method

Future<Result<UsersUserFullBase>> getFullUser({
  1. required InputUserBase id,
})

Get Full User.

ID: b60f5918.

Implementation

Future<Result<UsersUserFullBase>> getFullUser({
  required InputUserBase id,
}) async {
  // Preparing the request.
  final request = UsersGetFullUser(id: id);

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<UsersUserFullBase>();
}