You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, please explain how you design work with typed Block (e.g. Paragraph) after retrieve Page?
NotionResponse resBlocks =await notion.blocks.list(block_id:'YYYYYYYYY');
Pagination paging = resBlocks.content;
for (Block block in paging.blocks) {
if (block.isParagraph) {
//<-- HOW TO GET Paragraph Object ?
}
}
`