remove prints

This commit is contained in:
bwees 2025-05-21 10:58:53 -05:00
parent 87826a0de4
commit 4ecfda0014
No known key found for this signature in database

View File

@ -19,7 +19,6 @@ class GCastRepository {
GCastRepository();
Future<void> connect(CastDevice device) async {
print("Connecting to ${device.name}");
_castSession = await CastSessionManager().startSession(device);
_castSession?.stateStream.listen((state) {
@ -38,8 +37,6 @@ class GCastRepository {
'type': 'LAUNCH',
'appId': 'CC1AD845',
});
print("Connected to ${device.name}");
}
Future<void> disconnect() async {