setSubtitle static method

Future<void> setSubtitle(
  1. String subtitle
)

Sets the subtitle of the window (macOS only).

To remove the subtitle, pass an empty string to this method.

Implementation

static Future<void> setSubtitle(String subtitle) async {
  WindowManipulator.setSubtitle(subtitle);
}