resolve method
Implementation
FCCDeviceType resolve(double width) {
if (width <= mobileMaxWidth) return FCCDeviceType.mobile;
if (width <= tabletMaxWidth) return FCCDeviceType.tablet;
return FCCDeviceType.desktop;
}
FCCDeviceType resolve(double width) {
if (width <= mobileMaxWidth) return FCCDeviceType.mobile;
if (width <= tabletMaxWidth) return FCCDeviceType.tablet;
return FCCDeviceType.desktop;
}