copyWith method
Implementation
UpdateGroupCallMessageSendFailed copyWith({
int? groupCallId,
int? messageId,
TdError? error,
}) => UpdateGroupCallMessageSendFailed(
groupCallId: groupCallId ?? this.groupCallId,
messageId: messageId ?? this.messageId,
error: error ?? this.error,
);