getMetaTags method

Future<List<MetaTag>> getMetaTags()

Returns the list of <meta> tags of the current WebView.

NOTE: It is implemented using JavaScript.

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

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS
  • Web

Implementation

Future<List<MetaTag>> getMetaTags() {
  throw UnimplementedError(
      'getMetaTags is not implemented on the current platform');
}