copyWith method
Implementation
TransferChatOwnership copyWith({
int? chatId,
int? userId,
String? password,
}) =>
TransferChatOwnership(
chatId: chatId ?? this.chatId,
userId: userId ?? this.userId,
password: password ?? this.password,
);