Skip to content

Commit dec7227

Browse files
committed
fix analyzer
1 parent 048b80e commit dec7227

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

packages/firebase_ai/firebase_ai/example/lib/pages/bidi_page.dart

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,8 @@ class BidiSessionController extends ChangeNotifier {
532532
if (isSessionActive && _session != null) {
533533
developer.log('Simulating GoingAwayNotice locally');
534534
_handleLiveServerMessage(
535-
LiveServerResponse(message: const GoingAwayNotice(timeLeft: '10')));
535+
LiveServerResponse(message: const GoingAwayNotice(timeLeft: '10')),
536+
);
536537
}
537538
}
538539

@@ -646,13 +647,16 @@ class _BidiPageState extends State<BidiPage> {
646647
Row(
647648
mainAxisAlignment: MainAxisAlignment.spaceBetween,
648649
children: [
649-
const Text('Live Stream Session',
650-
style: TextStyle(fontWeight: FontWeight.bold)),
650+
const Text(
651+
'Live Stream Session',
652+
style: TextStyle(fontWeight: FontWeight.bold),
653+
),
651654
ElevatedButton.icon(
652655
icon: const Icon(Icons.speed, size: 16),
653656
label: const Text('Simulate GoAway'),
654657
style: ElevatedButton.styleFrom(
655-
visualDensity: VisualDensity.compact),
658+
visualDensity: VisualDensity.compact,
659+
),
656660
onPressed: _controller.isSessionActive
657661
? () => _controller.simulateGoingAway()
658662
: null,

0 commit comments

Comments
 (0)