seoHttpEquiv method

  1. @override
void seoHttpEquiv(
  1. 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
void seoHttpEquiv(String httpEquiv) {
  js.context.callMethod('seoAttributeJS', ['http-equiv', httpEquiv]);
}