AssistiveWindowProperties constructor

AssistiveWindowProperties({
  1. required AssistiveWindowType type,
  2. required bool visible,
  3. String? announceString,
})

Implementation

AssistiveWindowProperties({
  required AssistiveWindowType type,

  /// Sets true to show AssistiveWindow, sets false to hide.
  required bool visible,

  /// Strings for ChromeVox to announce.
  String? announceString,
}) : _wrapped = $js.AssistiveWindowProperties(
        type: type.toJS,
        visible: visible,
        announceString: announceString,
      );