From 104e93a675cd35131ec0042f53069e429fd7fc95 Mon Sep 17 00:00:00 2001 From: singerdmx Date: Sun, 20 Dec 2020 23:37:08 -0800 Subject: [PATCH] Fix QuillController --- lib/widgets/controller.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/controller.dart b/lib/widgets/controller.dart index 942f2c94..9bfe8f71 100644 --- a/lib/widgets/controller.dart +++ b/lib/widgets/controller.dart @@ -13,7 +13,7 @@ class QuillController extends ChangeNotifier { TextSelection selection; Style toggledStyle = Style(); - QuillController({@required this.document, @required this.selection, this.toggledStyle}) + QuillController({@required this.document, @required this.selection}) : assert(document != null), assert(selection != null);