robots abstract method

dynamic robots({
  1. required RobotsName robotsName,
  2. required String content,
})

Definition of robotsName meta tag attribute Definition of content meta tag attribute https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag Add web mata data of robotsName attribute Add web mata data of content attribute

Implementation

robots(
    {
    /// Definition of [robotsName] meta tag attribute
    required RobotsName robotsName,

    /// Definition of [content] meta tag attribute
    required String content});