singleParagraphDocShortText function

MutableDocument singleParagraphDocShortText()

Implementation

MutableDocument singleParagraphDocShortText() => MutableDocument(
      nodes: [
        ParagraphNode(
          id: "1",
          text: AttributedText(
            // End position is 37.
            "This is the first node in a document.",
          ),
        ),
      ],
    );