keywords method

  1. @override
dynamic keywords({
  1. required String keywords,
})
override

Definition of keywords meta tag attribute Separate list of keyword strings by commas Add web mata data of keywords attribute Example: String? keywords = 'Flutter, Dart, Simple SEO'; Implement the interface

Implementation

@override
keywords(
    {
    /// Definition of [keywords] meta tag attribute
    required String keywords}) {
  /// Call the javascript function with needed attributes
  js.context.callMethod('seoNameJS', ['keywords', keywords]);
}