copyWith method

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

Implementation

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