Pass any specified key in QuillEditor constructor to super (#589)

pull/592/head
Michael Allen 3 years ago committed by GitHub
parent 4cb0b281f6
commit 95be062c71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/src/widgets/editor.dart

@ -270,7 +270,7 @@ class QuillEditor extends StatefulWidget {
this.linkActionPickerDelegate = defaultLinkActionPickerDelegate, this.linkActionPickerDelegate = defaultLinkActionPickerDelegate,
this.customStyleBuilder, this.customStyleBuilder,
this.floatingCursorDisabled = false, this.floatingCursorDisabled = false,
Key? key}); Key? key}) : super(key: key);
factory QuillEditor.basic({ factory QuillEditor.basic({
required QuillController controller, required QuillController controller,

Loading…
Cancel
Save