init method
Implementation
ScreenScaleProperties init({
double? width,
double? height,
bool? allowFontScaling,
required bool allowSubpixel,
double? maxWidth,
}) {
return ScreenScaleProperties(
width: width,
height: height,
maxWidth: maxWidth,
allowFontScaling: allowFontScaling,
allowSubpixel: allowSubpixel);
}