isItRealDevice method

  1. @override
Future<bool?> isItRealDevice()
override

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;
}