httpEquiv method

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

Definition of http-equiv meta tag attribute https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta#attr-http-equiv Add web mata data of httpEquiv attribute Example: String? httpEquiv = 'X-UA-Compatible'; Implement the interface

Implementation

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