ResponsiveWidget constructor

const ResponsiveWidget({
  1. Key? key,
  2. Widget? large,
  3. Widget? medium,
  4. Widget? small,
  5. Widget? other,
})

Implementation

const ResponsiveWidget(
    {Key? key, this.large, this.medium, this.small, this.other})
    : super(key: key);