Mementifier: Passing arguments to getter?

In the doc of mementifier sets a getter with an argument:

defaultIncludes = [
	"firstName",
	"lastName",
	"avatarLink"
]

/**
* Get the avatar link for this user.
*/
string function getAvatarLink( numeric size=40 ){
	return variables.avatar.generateLink( getEmail(), arguments.size );
}

It’s possible to set the size argument when calling getmemento() ?

Thanks

Hmmm, not at the moment.

We would have to figure out a way to pass them since each method can be in the root or in a nested child. I am open to suggestions on how to tackle this for argument binding.