getIsTablet method
Implementation
@override
Future<bool?> getIsTablet() async {
try {
final brandName = await methodChannel.invokeMethod<bool>('getIsTablet');
return brandName;
} on PlatformException catch (e) {
debugPrint('Failed to get device id: ${e.message}');
return null;
}
}