copyWith method

DeclineGroupCallInvitation copyWith({
  1. int? chatId,
  2. int? messageId,
})

Implementation

DeclineGroupCallInvitation copyWith({int? chatId, int? messageId}) =>
    DeclineGroupCallInvitation(
      chatId: chatId ?? this.chatId,
      messageId: messageId ?? this.messageId,
    );