copyWith method

SendCallDebugInformation copyWith({
  1. InputCall? callId,
  2. String? debugInformation,
})

Implementation

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