ResponsiveChild constructor

const ResponsiveChild({
  1. required Widget child,
  2. bool large = true,
  3. bool medium = true,
  4. Key? key,
})

Implementation

const ResponsiveChild(
    {required this.child, this.large = true, this.medium = true, Key? key})
    : super(key: key);