seoRobots method

  1. @override
void seoRobots(
  1. String robots
)
override

Definition of robots meta tag attribute https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag Add web mata data of robots attribute Example: String? robots = 'noindex, nofollow'; Implement the interface

Implementation

@override
void seoRobots(String robots) {
  js.context.callMethod('seoNameJS', ['robots', robots]);
}