CrawledBlock constructor

const CrawledBlock({
  1. required String blockName,
  2. required List<CrawledProperty> properties,
  3. required List<CrawledBlock> nestedBlocks,
})

Implementation

const CrawledBlock({
  required this.blockName,
  required this.properties,
  required this.nestedBlocks,
});