getDeviceType function

DeviceType getDeviceType()

Implementation

DeviceType getDeviceType() {
  final data = MediaQueryData.fromWindow(WidgetsBinding.instance.window);
  return data.size.shortestSide < 550
      ? DeviceType.isPhone
      : DeviceType.isTablet;
}