RobotsRule constructor

const RobotsRule({
  1. String userAgent = '*',
  2. List<String> allow = const [],
  3. List<String> disallow = const [],
  4. int? crawlDelay,
})

Implementation

const RobotsRule({
  this.userAgent = '*',
  this.allow = const [],
  this.disallow = const [],
  this.crawlDelay,
});