copyWith method

SendCallLog copyWith({
  1. InputCall? callId,
  2. InputFile? logFile,
})

Implementation

SendCallLog copyWith({InputCall? callId, InputFile? logFile}) => SendCallLog(
  callId: callId ?? this.callId,
  logFile: logFile ?? this.logFile,
);