setTitle static method

Future<void> setTitle(
  1. BuildContext context,
  2. String title
)

Sets the title of the window.

Implementation

static Future<void> setTitle(BuildContext context, String title) {
  return YaruWindow.of(context).setTitle(title);
}