fromMarkdown method

TestSuperEditorConfigurator fromMarkdown(
  1. String markdown
)

Configures the editor with a Document that's parsed from the given markdown.

Implementation

TestSuperEditorConfigurator fromMarkdown(String markdown) {
  return TestSuperEditorConfigurator._(
    _widgetTester,
    deserializeMarkdownToDocument(markdown),
  );
}