seoCharset method

  1. @override
void seoCharset(
  1. String charset
)
override

Definition of charset meta tag attribute https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta#attr-charset Add web mata data of charset attribute Example: String? charset = 'UTF-8'; Implement the interface

Implementation

@override
void seoCharset(String charset) {
  js.context.callMethod('seoAttributeJS', ['charset', charset]);
}