copyWith method

  1. @override
MessageForwardOriginChannel copyWith({
  1. int? chatId,
  2. int? messageId,
  3. String? authorSignature,
})
override

Implementation

@override
MessageForwardOriginChannel copyWith({
  int? chatId,
  int? messageId,
  String? authorSignature,
}) =>
    MessageForwardOriginChannel(
      chatId: chatId ?? this.chatId,
      messageId: messageId ?? this.messageId,
      authorSignature: authorSignature ?? this.authorSignature,
    );