getTitle method

  1. @override
Future<String?> getTitle()

Gets the title for the current page.

NOTE for Web: this method will have effect only if the iframe has the same origin.

Officially Supported Platforms/Implementations:

Implementation

@override
Future<String?> getTitle() async {
  Map<String, dynamic> args = <String, dynamic>{};
  return await channel?.invokeMethod<String?>('getTitle', args);
}