keyValue method

  1. @override
dynamic keyValue({
  1. required String key,
  2. required String value,
})
override

Definition of key meta tag attribute If you do not found meta key you want just use metaKey Definition of value meta tag attribute The value is used for other key-value meta not listed in attributes by metaValue Add web mata data of other meta key with value Implement the interface

Implementation

@override
keyValue(
    {
    /// Definition of [key] meta tag attribute
    required String key,

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