IS it possible to call Custom Keywords from another custom?

Hello Everyone,
I am trying to use the custom keywords written in one package in another package.
//To fetch no of rows in a table, I have written a method in a different package




Package One
Class Row{
@Keyword
def rowsInTable()
{
Return n
}
}

What I want is , I want the rowsin table Keyword to be used in another package(another groovy script).

Package Two
Class Second
{
@Keyword
Def customInside
{
Int no=
CustomKeywords.‘one.Row.rowsInTable’()
Print no()
}
}
This I have used in my class
Class one
{
CustomKeywords.‘Two.Second…customInside’()
}
I am getting above mentioned eror in the screenshot. Pls help me out

Try to clean the project, close and open it again to see if it works. The syntax seems correct to me. You should be able to see suggestions after you type CustomKeywords in your keywords.

Why not call it directly without using customKeywords? you can import the package

import com.Controls.CommonUtilities

then call the function

CommonUtilities.getRowNumberInTable()