checkIsTheDeveloperModeOn method
Checks if the developer mode is enabled on the device. Returns a bool indicating whether developer mode is on.
Implementation
@override
Future<bool?> checkIsTheDeveloperModeOn() async {
final version =
await methodChannel.invokeMethod('checkIsTheDeveloperModeOn');
return version;
}