init static method
Implementation
static DeviceConfig init({
DimensionScaleMode scaleMode = DimensionScaleMode.minimum,
Device watch = const Device.watch(),
Device mobile = const Device.mobile(),
Device tablet = const Device.tablet(),
Device laptop = const Device.laptop(),
Device desktop = const Device.desktop(),
Device tv = const Device.tv(),
}) {
_i = DeviceConfig(
scaleMode: scaleMode,
watch: watch,
mobile: mobile,
tablet: tablet,
laptop: laptop,
desktop: desktop,
tv: tv,
);
return i;
}