File tree 1 file changed +8
-14
lines changed
1 file changed +8
-14
lines changed Original file line number Diff line number Diff line change @@ -1178,30 +1178,24 @@ class _FixedDestinationComposeBoxBody extends _ComposeBoxBody {
1178
1178
}
1179
1179
1180
1180
sealed class ComposeBoxController {
1181
- ComposeContentController get content => _content;
1182
- final _content = ComposeContentController ();
1183
-
1184
- FocusNode get contentFocusNode => _contentFocusNode;
1185
- final _contentFocusNode = FocusNode ();
1181
+ final content = ComposeContentController ();
1182
+ final contentFocusNode = FocusNode ();
1186
1183
1187
1184
@mustCallSuper
1188
1185
void dispose () {
1189
- _content .dispose ();
1190
- _contentFocusNode .dispose ();
1186
+ content .dispose ();
1187
+ contentFocusNode .dispose ();
1191
1188
}
1192
1189
}
1193
1190
1194
1191
class StreamComposeBoxController extends ComposeBoxController {
1195
- ComposeTopicController get topic => _topic;
1196
- final _topic = ComposeTopicController ();
1197
-
1198
- FocusNode get topicFocusNode => _topicFocusNode;
1199
- final _topicFocusNode = FocusNode ();
1192
+ final topic = ComposeTopicController ();
1193
+ final topicFocusNode = FocusNode ();
1200
1194
1201
1195
@override
1202
1196
void dispose () {
1203
- _topic .dispose ();
1204
- _topicFocusNode .dispose ();
1197
+ topic .dispose ();
1198
+ topicFocusNode .dispose ();
1205
1199
super .dispose ();
1206
1200
}
1207
1201
}
You can’t perform that action at this time.
0 commit comments