TextScaleFactor constructor

  1. @Deprecated('Use `MediaQuery.withClampedTextScaling()` directly instead.')
const TextScaleFactor({
  1. Key? key,
  2. Widget? child,
  3. double? min = 1,
  4. double? max,
})

Implementation

@Deprecated('Use `MediaQuery.withClampedTextScaling()` directly instead.')
const TextScaleFactor({
  super.key,
  super.child,
  this.min = 1,
  this.max,
});