getChildContext method

  1. @Deprecated('This legacy, unstable context API is only supported in the deprecated Component, and not Component2.' ' Instead, use Component2.context, Context.Consumer, or useContext.')
Map<String, dynamic> getChildContext()
inherited

Returns a Map of context to be passed to descendant components.

Only keys present in childContextKeys will be used; all others will be ignored.

DEPRECATED - DO NOT USE

This API was never stable in any version of ReactJS, and was replaced with a new, incompatible context API in ReactJS 16.

This will be completely removed alongside the Component class.

Implementation

@Deprecated('This legacy, unstable context API is only supported in the deprecated Component, and not Component2.'
    ' Instead, use Component2.context, Context.Consumer, or useContext.')
Map<String, dynamic> getChildContext() => const {};