getDeviceType function

String getDeviceType()

Implementation

String getDeviceType() {
  final data = MediaQueryData.fromView(WidgetsBinding.instance.window);
  return data.size.shortestSide < 600 ? 'mobile' : 'tablet';
}