UnscaleBox constructor

const UnscaleBox({
  1. Key? key,
  2. required Widget child,
  3. double dpr = 3.0,
  4. double designWidth = 375,
  5. UnscaleMode mode = UnscaleMode.full,
})

Implementation

const UnscaleBox({
  super.key,
  required this.child,
  this.dpr = 3.0,
  this.designWidth = 375,
  this.mode = UnscaleMode.full,
});