componentFactory property

  1. @override
ReactComponentFactoryProxy componentFactory
override

The react-dart factory associated with this props class's component, used to create a ReactElement with these props within build/call.

This will only be null for props that can't be invoked, such as props map views, or props for abstract components.

Implementation

@override
ReactComponentFactoryProxy get componentFactory =>
    throw UnimplementedError('@PropsMixin instances do not implement componentFactory');
  1. @override
void componentFactory=(ReactComponentFactoryProxy? v)
override

The react-dart factory associated with this props class's component, used to create a ReactElement with these props within build/call.

This will only be null for props that can't be invoked, such as props map views, or props for abstract components.

Implementation

@override
set componentFactory(ReactComponentFactoryProxy? v) => throw UnimplementedError('@PropsMixin instances do not implement componentFactory');