show property

({void Function([bool? preserveFocus]) $1, void Function([ViewColumn? column, bool? preserveFocus]) $2}) get show

Overload accessor: $1, $2

Implementation

({
  /// Reveal this channel in the UI.
  ///
  ///  @param preserveFocus When `true` the channel will not take focus.
  void Function([_i2.bool? preserveFocus]) $1,

  /// Reveal this channel in the UI.
  ///
  ///  @deprecated Use the overload with just one parameter (`show(preserveFocus?: boolean): void`).
  ///
  ///  @param column This argument is **deprecated** and will be ignored.
  ///  @param preserveFocus When `true` the channel will not take focus.
  void Function([
    _i3.ViewColumn? column,
    _i2.bool? preserveFocus,
  ]) $2,
}) get show => (
      $1: _show$1,
      $2: _show$2,
    );