|
|
@ -1,5 +1,4 @@ |
|
|
|
import 'package:flutter/foundation.dart' show immutable; |
|
|
|
import 'package:flutter/foundation.dart' show immutable; |
|
|
|
import 'package:flutter/widgets.dart' show Color; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import '../../../documents/attribute.dart'; |
|
|
|
import '../../../documents/attribute.dart'; |
|
|
|
import '../../quill_configurations.dart'; |
|
|
|
import '../../quill_configurations.dart'; |
|
|
@ -23,7 +22,6 @@ class QuillToolbarToggleCheckListButtonOptions |
|
|
|
const QuillToolbarToggleCheckListButtonOptions({ |
|
|
|
const QuillToolbarToggleCheckListButtonOptions({ |
|
|
|
super.iconSize, |
|
|
|
super.iconSize, |
|
|
|
super.iconButtonFactor, |
|
|
|
super.iconButtonFactor, |
|
|
|
this.fillColor, |
|
|
|
|
|
|
|
this.attribute = Attribute.unchecked, |
|
|
|
this.attribute = Attribute.unchecked, |
|
|
|
this.isShouldRequestKeyboard = false, |
|
|
|
this.isShouldRequestKeyboard = false, |
|
|
|
super.iconTheme, |
|
|
|
super.iconTheme, |
|
|
@ -33,8 +31,6 @@ class QuillToolbarToggleCheckListButtonOptions |
|
|
|
super.childBuilder, |
|
|
|
super.childBuilder, |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
final Color? fillColor; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final Attribute attribute; |
|
|
|
final Attribute attribute; |
|
|
|
|
|
|
|
|
|
|
|
/// Should we request the keyboard when you press the toggle check list button |
|
|
|
/// Should we request the keyboard when you press the toggle check list button |
|
|
|