copyWith method

MessageOriginChat copyWith({
  1. int? senderChatId,
  2. String? authorSignature,
})

Implementation

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