// dart format width=80 // coverage:ignore-file // GENERATED CODE - DO NOT MODIFY BY HAND // ignore_for_file: type=lint // ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark part of 'call.dart'; // ************************************************************************** // FreezedGenerator // ************************************************************************** // dart format off T _$identity(T value) => value; /// @nodoc mixin _$CallState { bool get isConnected; bool get isMicrophoneEnabled; bool get isCameraEnabled; bool get isScreenSharing; Duration get duration; String? get error; /// Create a copy of CallState /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') $CallStateCopyWith get copyWith => _$CallStateCopyWithImpl(this as CallState, _$identity); @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is CallState&&(identical(other.isConnected, isConnected) || other.isConnected == isConnected)&&(identical(other.isMicrophoneEnabled, isMicrophoneEnabled) || other.isMicrophoneEnabled == isMicrophoneEnabled)&&(identical(other.isCameraEnabled, isCameraEnabled) || other.isCameraEnabled == isCameraEnabled)&&(identical(other.isScreenSharing, isScreenSharing) || other.isScreenSharing == isScreenSharing)&&(identical(other.duration, duration) || other.duration == duration)&&(identical(other.error, error) || other.error == error)); } @override int get hashCode => Object.hash(runtimeType,isConnected,isMicrophoneEnabled,isCameraEnabled,isScreenSharing,duration,error); @override String toString() { return 'CallState(isConnected: $isConnected, isMicrophoneEnabled: $isMicrophoneEnabled, isCameraEnabled: $isCameraEnabled, isScreenSharing: $isScreenSharing, duration: $duration, error: $error)'; } } /// @nodoc abstract mixin class $CallStateCopyWith<$Res> { factory $CallStateCopyWith(CallState value, $Res Function(CallState) _then) = _$CallStateCopyWithImpl; @useResult $Res call({ bool isConnected, bool isMicrophoneEnabled, bool isCameraEnabled, bool isScreenSharing, Duration duration, String? error }); } /// @nodoc class _$CallStateCopyWithImpl<$Res> implements $CallStateCopyWith<$Res> { _$CallStateCopyWithImpl(this._self, this._then); final CallState _self; final $Res Function(CallState) _then; /// Create a copy of CallState /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({Object? isConnected = null,Object? isMicrophoneEnabled = null,Object? isCameraEnabled = null,Object? isScreenSharing = null,Object? duration = null,Object? error = freezed,}) { return _then(_self.copyWith( isConnected: null == isConnected ? _self.isConnected : isConnected // ignore: cast_nullable_to_non_nullable as bool,isMicrophoneEnabled: null == isMicrophoneEnabled ? _self.isMicrophoneEnabled : isMicrophoneEnabled // ignore: cast_nullable_to_non_nullable as bool,isCameraEnabled: null == isCameraEnabled ? _self.isCameraEnabled : isCameraEnabled // ignore: cast_nullable_to_non_nullable as bool,isScreenSharing: null == isScreenSharing ? _self.isScreenSharing : isScreenSharing // ignore: cast_nullable_to_non_nullable as bool,duration: null == duration ? _self.duration : duration // ignore: cast_nullable_to_non_nullable as Duration,error: freezed == error ? _self.error : error // ignore: cast_nullable_to_non_nullable as String?, )); } } /// @nodoc class _CallState implements CallState { const _CallState({required this.isConnected, required this.isMicrophoneEnabled, required this.isCameraEnabled, required this.isScreenSharing, this.duration = const Duration(seconds: 0), this.error}); @override final bool isConnected; @override final bool isMicrophoneEnabled; @override final bool isCameraEnabled; @override final bool isScreenSharing; @override@JsonKey() final Duration duration; @override final String? error; /// Create a copy of CallState /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') _$CallStateCopyWith<_CallState> get copyWith => __$CallStateCopyWithImpl<_CallState>(this, _$identity); @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is _CallState&&(identical(other.isConnected, isConnected) || other.isConnected == isConnected)&&(identical(other.isMicrophoneEnabled, isMicrophoneEnabled) || other.isMicrophoneEnabled == isMicrophoneEnabled)&&(identical(other.isCameraEnabled, isCameraEnabled) || other.isCameraEnabled == isCameraEnabled)&&(identical(other.isScreenSharing, isScreenSharing) || other.isScreenSharing == isScreenSharing)&&(identical(other.duration, duration) || other.duration == duration)&&(identical(other.error, error) || other.error == error)); } @override int get hashCode => Object.hash(runtimeType,isConnected,isMicrophoneEnabled,isCameraEnabled,isScreenSharing,duration,error); @override String toString() { return 'CallState(isConnected: $isConnected, isMicrophoneEnabled: $isMicrophoneEnabled, isCameraEnabled: $isCameraEnabled, isScreenSharing: $isScreenSharing, duration: $duration, error: $error)'; } } /// @nodoc abstract mixin class _$CallStateCopyWith<$Res> implements $CallStateCopyWith<$Res> { factory _$CallStateCopyWith(_CallState value, $Res Function(_CallState) _then) = __$CallStateCopyWithImpl; @override @useResult $Res call({ bool isConnected, bool isMicrophoneEnabled, bool isCameraEnabled, bool isScreenSharing, Duration duration, String? error }); } /// @nodoc class __$CallStateCopyWithImpl<$Res> implements _$CallStateCopyWith<$Res> { __$CallStateCopyWithImpl(this._self, this._then); final _CallState _self; final $Res Function(_CallState) _then; /// Create a copy of CallState /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $Res call({Object? isConnected = null,Object? isMicrophoneEnabled = null,Object? isCameraEnabled = null,Object? isScreenSharing = null,Object? duration = null,Object? error = freezed,}) { return _then(_CallState( isConnected: null == isConnected ? _self.isConnected : isConnected // ignore: cast_nullable_to_non_nullable as bool,isMicrophoneEnabled: null == isMicrophoneEnabled ? _self.isMicrophoneEnabled : isMicrophoneEnabled // ignore: cast_nullable_to_non_nullable as bool,isCameraEnabled: null == isCameraEnabled ? _self.isCameraEnabled : isCameraEnabled // ignore: cast_nullable_to_non_nullable as bool,isScreenSharing: null == isScreenSharing ? _self.isScreenSharing : isScreenSharing // ignore: cast_nullable_to_non_nullable as bool,duration: null == duration ? _self.duration : duration // ignore: cast_nullable_to_non_nullable as Duration,error: freezed == error ? _self.error : error // ignore: cast_nullable_to_non_nullable as String?, )); } } /// @nodoc mixin _$CallParticipantLive { CallParticipant get participant; Participant get remoteParticipant; /// Create a copy of CallParticipantLive /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') $CallParticipantLiveCopyWith get copyWith => _$CallParticipantLiveCopyWithImpl(this as CallParticipantLive, _$identity); @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is CallParticipantLive&&(identical(other.participant, participant) || other.participant == participant)&&(identical(other.remoteParticipant, remoteParticipant) || other.remoteParticipant == remoteParticipant)); } @override int get hashCode => Object.hash(runtimeType,participant,remoteParticipant); @override String toString() { return 'CallParticipantLive(participant: $participant, remoteParticipant: $remoteParticipant)'; } } /// @nodoc abstract mixin class $CallParticipantLiveCopyWith<$Res> { factory $CallParticipantLiveCopyWith(CallParticipantLive value, $Res Function(CallParticipantLive) _then) = _$CallParticipantLiveCopyWithImpl; @useResult $Res call({ CallParticipant participant, Participant remoteParticipant }); $CallParticipantCopyWith<$Res> get participant; } /// @nodoc class _$CallParticipantLiveCopyWithImpl<$Res> implements $CallParticipantLiveCopyWith<$Res> { _$CallParticipantLiveCopyWithImpl(this._self, this._then); final CallParticipantLive _self; final $Res Function(CallParticipantLive) _then; /// Create a copy of CallParticipantLive /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({Object? participant = null,Object? remoteParticipant = null,}) { return _then(_self.copyWith( participant: null == participant ? _self.participant : participant // ignore: cast_nullable_to_non_nullable as CallParticipant,remoteParticipant: null == remoteParticipant ? _self.remoteParticipant : remoteParticipant // ignore: cast_nullable_to_non_nullable as Participant, )); } /// Create a copy of CallParticipantLive /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $CallParticipantCopyWith<$Res> get participant { return $CallParticipantCopyWith<$Res>(_self.participant, (value) { return _then(_self.copyWith(participant: value)); }); } } /// @nodoc class _CallParticipantLive extends CallParticipantLive { const _CallParticipantLive({required this.participant, required this.remoteParticipant}): super._(); @override final CallParticipant participant; @override final Participant remoteParticipant; /// Create a copy of CallParticipantLive /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') _$CallParticipantLiveCopyWith<_CallParticipantLive> get copyWith => __$CallParticipantLiveCopyWithImpl<_CallParticipantLive>(this, _$identity); @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is _CallParticipantLive&&(identical(other.participant, participant) || other.participant == participant)&&(identical(other.remoteParticipant, remoteParticipant) || other.remoteParticipant == remoteParticipant)); } @override int get hashCode => Object.hash(runtimeType,participant,remoteParticipant); @override String toString() { return 'CallParticipantLive(participant: $participant, remoteParticipant: $remoteParticipant)'; } } /// @nodoc abstract mixin class _$CallParticipantLiveCopyWith<$Res> implements $CallParticipantLiveCopyWith<$Res> { factory _$CallParticipantLiveCopyWith(_CallParticipantLive value, $Res Function(_CallParticipantLive) _then) = __$CallParticipantLiveCopyWithImpl; @override @useResult $Res call({ CallParticipant participant, Participant remoteParticipant }); @override $CallParticipantCopyWith<$Res> get participant; } /// @nodoc class __$CallParticipantLiveCopyWithImpl<$Res> implements _$CallParticipantLiveCopyWith<$Res> { __$CallParticipantLiveCopyWithImpl(this._self, this._then); final _CallParticipantLive _self; final $Res Function(_CallParticipantLive) _then; /// Create a copy of CallParticipantLive /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $Res call({Object? participant = null,Object? remoteParticipant = null,}) { return _then(_CallParticipantLive( participant: null == participant ? _self.participant : participant // ignore: cast_nullable_to_non_nullable as CallParticipant,remoteParticipant: null == remoteParticipant ? _self.remoteParticipant : remoteParticipant // ignore: cast_nullable_to_non_nullable as Participant, )); } /// Create a copy of CallParticipantLive /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $CallParticipantCopyWith<$Res> get participant { return $CallParticipantCopyWith<$Res>(_self.participant, (value) { return _then(_self.copyWith(participant: value)); }); } } // dart format on