ResponsiveRatioSizeProvider constructor

const ResponsiveRatioSizeProvider({
  1. Key? key,
  2. Size design = defaultDesignSize,
  3. bool usePortraitInitialLayout = false,
  4. bool disabled = false,
  5. required Widget child,
})

Implementation

const ResponsiveRatioSizeProvider({
  super.key,
  this.design = defaultDesignSize,
  this.usePortraitInitialLayout = false,
  this.disabled = false,
  required this.child,
});