copyWith method
Implementation
SendCallDebugInformation copyWith({
  int? callId,
  String? debugInformation,
}) =>
    SendCallDebugInformation(
      callId: callId ?? this.callId,
      debugInformation: debugInformation ?? this.debugInformation,
    );