isItRealDevice method
Checks if the device is real. Returns a bool indicating whether developer mode is on.
Implementation
@override
Future<bool?> isItRealDevice() async {
final value = await methodChannel.invokeMethod('isItRealDevice');
print('isItRealDevice:$value');
return value;
}