Changes the title of native window to title.
Future<void> setTitle(String title) async { final Map<String, dynamic> arguments = { 'title': title, }; await _channel.invokeMethod('setTitle', arguments); }