Fix QuillController

pull/13/head
singerdmx 4 years ago
parent 4d4cdab520
commit 104e93a675
  1. 2
      lib/widgets/controller.dart

@ -13,7 +13,7 @@ class QuillController extends ChangeNotifier {
TextSelection selection; TextSelection selection;
Style toggledStyle = Style(); Style toggledStyle = Style();
QuillController({@required this.document, @required this.selection, this.toggledStyle}) QuillController({@required this.document, @required this.selection})
: assert(document != null), : assert(document != null),
assert(selection != null); assert(selection != null);

Loading…
Cancel
Save