ResponsiveWidget constructor

const ResponsiveWidget({
  1. dynamic tabletBuilder(
    1. BuildContext context,
    2. SizeInformation sizeInformation
    )?,
  2. dynamic landscapeBuilder(
    1. BuildContext context,
    2. SizeInformation sizeInformation
    )?,
  3. dynamic tabletLandscapeBuilder(
    1. BuildContext context,
    2. SizeInformation sizeInformation
    )?,
  4. Widget builder(
    1. BuildContext context,
    2. SizeInformation sizeInformation
    )?,
  5. Key? key,
})

Implementation

const ResponsiveWidget({
  this.tabletBuilder,
  this.landscapeBuilder,
  this.tabletLandscapeBuilder,
  this.builder,
  Key? key,
}) : super(key: key);