NiceTextScaleConstrained constructor

const NiceTextScaleConstrained({
  1. Key? key,
  2. required Widget child,
  3. double minScaleFactor = 0.8,
  4. double maxScaleFactor = 2.0,
})

Implementation

const NiceTextScaleConstrained({
  super.key,
  required this.child,
  this.minScaleFactor = 0.8,
  this.maxScaleFactor = 2.0,
});