seoDescription method

  1. @override
void seoDescription(
  1. String description
)
override

Definition of description meta tag attribute https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/The_head_metadata_in_HTML#adding_an_author_and_description Add web mata data of description attribute Example: String? description = 'Simple SEO description mata data'; Implement the interface

Implementation

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