get Move Function Arg Types
abstract suspend fun getMoveFunctionArgTypes(id: String): Result<GetMoveFunctionArgTypesQuery.Data?, SuiError>
Fetches the argument types for a specific Move function.
Return
A Result which is either:
Ok
: Containing a nullable GetMoveFunctionArgTypesQuery.Data object with the argument types.Err
: Containing a SuiError object with a list of GraphQLErrors.
Parameters
id
The identifier of the Move function (e.g., "0x2::sui::transfer_object").