applicationDevelopment method

Future<bool?> applicationDevelopment()

开发者选项 Open Android settings in Application Development section. returns operation successful or failure.

Implementation

Future<bool?> applicationDevelopment() {
  return postMessage<bool?>(
      action: 'android.settings.APPLICATION_DEVELOPMENT_SETTINGS');
}