findBlock method

MarkdownBlock? findBlock(
  1. String blockId
)

Finds blockId in this block or its children.

Implementation

MarkdownBlock? findBlock(String blockId) => id == blockId ? this : null;