DSScaleLimiter constructor

const DSScaleLimiter({
  1. Key? key,
  2. required Widget child,
  3. double minFactor = 0.9,
  4. double maxFactor = 1.2,
  5. double minWidth = 360,
})

Implementation

const DSScaleLimiter({
  super.key,
  required this.child,
  this.minFactor = 0.9,
  this.maxFactor = 1.2,
  this.minWidth = 360,
});