I have a ViewModel class which has a property of type String called Title.
In my View I have a ListView of type Comment. I would like to access the Title property of my ViewModel inside my ViewCell. Because the ViewCell has a different BindingContext I can't do this: '{Binding Title}'
Does anyone know how I can access my ViewModel property inside my ViewCell?