File tree Expand file tree Collapse file tree
packages/firebase_ai/firebase_ai/example/lib/pages Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments