orderedListItemFollowedByEmptyParagraph function

MutableDocument orderedListItemFollowedByEmptyParagraph()

Implementation

MutableDocument orderedListItemFollowedByEmptyParagraph() => MutableDocument(
      nodes: [
        ListItemNode(
          id: "1",
          itemType: ListItemType.ordered,
          text: AttributedText(
            "This is an ordered list item.",
          ),
        ),
        ParagraphNode(id: "2", text: AttributedText()),
      ],
    );