ReactJsComponentFactoryProxy constructor

ReactJsComponentFactoryProxy(
  1. ReactClass jsClass, {
  2. bool shouldConvertDomProps = true,
  3. bool alwaysReturnChildrenAsList = false,
  4. List<String> additionalRefPropKeys = const [],
})

Implementation

ReactJsComponentFactoryProxy(
  ReactClass jsClass, {
  this.shouldConvertDomProps = true,
  this.alwaysReturnChildrenAsList = false,
  List<String> additionalRefPropKeys = const [],
})  : type = jsClass,
      _additionalRefPropKeys = additionalRefPropKeys {
  ArgumentError.checkNotNull(jsClass, 'jsClass');
}