copyWith method
CallStateDiscarded
copyWith({
- CallDiscardReason? reason,
- bool? needRating,
- bool? needDebugInformation,
override
Implementation
@override
CallStateDiscarded copyWith({
CallDiscardReason? reason,
bool? needRating,
bool? needDebugInformation,
}) => CallStateDiscarded(
reason: reason ?? this.reason,
needRating: needRating ?? this.needRating,
needDebugInformation: needDebugInformation ?? this.needDebugInformation,
);