copyWith method

  1. @override
MessageForwardOriginChat copyWith({
  1. int? senderChatId,
  2. String? authorSignature,
})
override

Implementation

@override
MessageForwardOriginChat copyWith({
  int? senderChatId,
  String? authorSignature,
}) =>
    MessageForwardOriginChat(
      senderChatId: senderChatId ?? this.senderChatId,
      authorSignature: authorSignature ?? this.authorSignature,
    );