description method

  1. @override
dynamic description({
  1. required 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
description(
    {
    /// Definition of [description] meta tag attribute
    required String description}) {
  /// Call the javascript function with needed attributes
  js.context.callMethod('seoNameJS', ['description', description]);
}