InterfaceScaleSetting constructor

const InterfaceScaleSetting({
  1. Key? key,
  2. required double value,
  3. required ValueChanged<double> onChanged,
})

Implementation

const InterfaceScaleSetting({
  super.key,
  required this.value,
  required this.onChanged,
});