copyWith method

UpdateGroupCallMessageSendFailed copyWith({
  1. int? groupCallId,
  2. int? messageId,
  3. TdError? error,
})

Implementation

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