File tree Expand file tree Collapse file tree
packages/firebase_ai/firebase_ai Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ class BidiSessionController extends ChangeNotifier {
189189 );
190190
191191 final tools = [
192- Tool .functionDeclarations ([_lightControlTool])
192+ Tool .functionDeclarations ([_lightControlTool]),
193193 ];
194194
195195 _liveModel = useVertexBackend
@@ -434,12 +434,17 @@ class BidiSessionController extends ChangeNotifier {
434434 _activeSessionHandle = message.newHandle;
435435 _lastProcessedIndex = message.lastConsumedClientMessageIndex;
436436 developer.log (
437- 'SessionResumptionUpdate: handle ${message .newHandle }, index $_lastProcessedIndex ' );
437+ 'SessionResumptionUpdate: handle ${message .newHandle }, index $_lastProcessedIndex ' ,
438+ );
438439 }
439440 }
440441
441- int ? _handleTranscription (Transcription ? transcription, int ? messageIndex,
442- String prefix, bool fromUser) {
442+ int ? _handleTranscription (
443+ Transcription ? transcription,
444+ int ? messageIndex,
445+ String prefix,
446+ bool fromUser,
447+ ) {
443448 int ? currentIndex = messageIndex;
444449 if (transcription? .text != null ) {
445450 if (currentIndex != null ) {
Original file line number Diff line number Diff line change 1313// limitations under the License.
1414
1515import 'dart:async' ;
16- import 'dart:convert' ;
1716
1817import 'package:firebase_app_check/firebase_app_check.dart' ;
1918import 'package:firebase_auth/firebase_auth.dart' ;
You can’t perform that action at this time.
0 commit comments