copyWith method

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

Implementation

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