We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd47653 commit 073042aCopy full SHA for 073042a
lib/widgets/compose_box.dart
@@ -165,12 +165,12 @@ class ComposeTopicController extends ComposeController<TopicValidationError> {
165
///
166
/// The term "Vacuous" draws distinction from [String.isEmpty], in the sense
167
/// that certain strings are not empty but also indicate the absence of a topic.
168
- bool get isTopicVacuous => textNormalized == kNoTopicTopic;
+ bool get _isTopicVacuous => textNormalized == kNoTopicTopic;
169
170
@override
171
List<TopicValidationError> _computeValidationErrors() {
172
return [
173
- if (mandatory && isTopicVacuous)
+ if (mandatory && _isTopicVacuous)
174
TopicValidationError.mandatoryButEmpty,
175
176
if (
0 commit comments