I found workaround, I created my custom touch behaviour with default constructor which just inherit this touch effect
using CommunityToolkit.Maui.Behaviors;
public class MyTouchBehavior : TouchBehavior
{
public MyTouchBehavior() : base()
{
}
}