propertyContent method

  1. @override
dynamic propertyContent({
  1. required String property,
  2. required String content,
})
override

Definition of property meta tag attribute If you do not found meta property you want just use metaProperty Definition of content meta tag attribute The value is used for other property meta not listed in attributes by metaPropertyContent Add web mata data of other meta property with content Implement the interface

Implementation

@override
propertyContent(
    {
    /// Definition of [property] meta tag attribute
    required String property,

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