Pass any specified key in QuillEditor constructor to super

pull/589/head
Mike Allen 3 years ago
parent 55da91e510
commit 40577f096b
  1. 2
      lib/src/widgets/editor.dart

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

Loading…
Cancel
Save