GoogleCastIosDevice constructor

GoogleCastIosDevice({
  1. required String deviceID,
  2. required String friendlyName,
  3. required String? modelName,
  4. required String? statusText,
  5. required String deviceVersion,
  6. required bool isOnLocalNetwork,
  7. required String category,
  8. required String uniqueID,
  9. required int? index,
})

Creates a new GoogleCastIosDevice instance.

All parameters except index are required and are passed to the base GoogleCastDevice.

Implementation

GoogleCastIosDevice({
  required super.deviceID,
  required super.friendlyName,
  required super.modelName,
  required super.statusText,
  required super.deviceVersion,
  required super.isOnLocalNetwork,
  required super.category,
  required super.uniqueID,
  required this.index,
});