checkIsTheDeveloperModeOn method

Future<bool?> checkIsTheDeveloperModeOn()

Method to check if the developer mode is enabled on the device. Throws UnimplementedError if not overridden by a platform-specific implementation.

Implementation

Future<bool?> checkIsTheDeveloperModeOn() {
  throw UnimplementedError('Failed to check if device is in developer mode.');
}