IOSGoogleCastSessions constructor

IOSGoogleCastSessions({
  1. required GoogleCastDevice? device,
  2. required String? sessionID,
  3. required GoogleCastConnectState connectionState,
  4. required bool currentDeviceMuted,
  5. required double currentDeviceVolume,
  6. required String deviceStatusText,
})

Creates an IOSGoogleCastSessions instance.

All parameters are required and are passed to the superclass constructor.

Implementation

IOSGoogleCastSessions({
  required super.device,
  required super.sessionID,
  required super.connectionState,
  required super.currentDeviceMuted,
  required super.currentDeviceVolume,
  required super.deviceStatusText,
});