seoViewport method

  1. @override
void seoViewport(
  1. String viewport
)
override

Definition of viewport meta tag attribute Separate list of viewport strings by commas https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag Add web mata data of viewport attribute Example: String? viewport = 'width=device-width, initial-scale=1'; Implement the interface

Implementation

@override
void seoViewport(String viewport) {
  js.context.callMethod('seoNameJS', ['viewport', viewport]);
}