nightDisplay method

Future<bool?> nightDisplay()

护眼模式 Open Android settings in Night Display section. returns operation successful or failure.

Implementation

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