@@ -411,45 +411,42 @@ abstract class _ContentInput extends StatefulWidget {
411
411
// ignore: unused_element
412
412
factory _ContentInput .noTypingNotifier ({
413
413
required Narrow narrow,
414
- required SendableNarrow destination,
415
414
required ComposeBoxController controller,
416
415
required String hintText,
417
416
}) => _ContentInputNoTypingNotifier ._(
418
417
narrow: narrow,
419
- destination: destination,
420
418
controller: controller,
421
419
hintText: hintText,
422
420
);
423
421
424
422
const _ContentInput ._({
425
423
required this .narrow,
426
- required this .destination,
427
424
required this .controller,
428
425
required this .hintText,
429
426
});
430
427
431
428
final Narrow narrow;
432
- final SendableNarrow destination;
433
429
final ComposeBoxController controller;
434
430
final String hintText;
435
431
}
436
432
437
433
class _ContentInputWithTypingNotifier extends _ContentInput {
438
434
const _ContentInputWithTypingNotifier ._({
439
435
required super .narrow,
440
- required super .destination,
436
+ required this .destination,
441
437
required super .controller,
442
438
required super .hintText,
443
439
}) : super ._();
444
440
441
+ final SendableNarrow destination;
442
+
445
443
@override
446
444
State <_ContentInput > createState () => _ContentInputStateWithTypingNotifier ();
447
445
}
448
446
449
447
class _ContentInputNoTypingNotifier extends _ContentInput {
450
448
const _ContentInputNoTypingNotifier ._({
451
449
required super .narrow,
452
- required super .destination,
453
450
required super .controller,
454
451
required super .hintText,
455
452
}) : super ._();
0 commit comments