findBlock method
Finds blockId in this block or its children.
Implementation
MarkdownBlock? findBlock(String blockId) => id == blockId ? this : null;
Finds blockId in this block or its children.
MarkdownBlock? findBlock(String blockId) => id == blockId ? this : null;