withEditorSize method

TestDocumentConfigurator withEditorSize(
  1. Size? size
)

Configures the SuperReader to constrain its maxHeight and maxWidth using the given size.

Implementation

TestDocumentConfigurator withEditorSize(ui.Size? size) {
  _editorSize = size;
  return this;
}