factoryRenderer property
Specifies the componentRenderer to use to determine the component for rendering an item. Specifies the factoryRenderer to use to determine the factory for rendering an item.
Implementation
//@override
//@Deprecated(
// 'Use factoryRenderer instead it provides more tree-shakeable code')
//ComponentRenderer? componentRenderer;
/// Specifies the factoryRenderer to use to determine the factory for
/// rendering an item.
@override
FactoryRenderer<RendersValue, T>? factoryRenderer;
Specifies the factoryRenderer to use to determine the factory for rendering an item.
Implementation
@Input()
@override
set factoryRenderer(FactoryRenderer<RendersValue, T>? value) {
super.factoryRenderer = value;
}