InheritedResponsiveWrapper constructor
const
InheritedResponsiveWrapper({
- Key? key,
- required ResponsiveWrapperData data,
- required Widget child,
Creates a widget that provides ResponsiveWrapperData to its descendants.
The data
and child
arguments must not be null.
Implementation
const InheritedResponsiveWrapper(
{Key? key, required this.data, required Widget child})
: super(key: key, child: child);