copyWith method

  1. @override
ChatTypeSecret copyWith({
  1. int? secretChatId,
  2. int? userId,
})
override

Implementation

@override
ChatTypeSecret copyWith({
  int? secretChatId,
  int? userId,
}) => ChatTypeSecret(
  secretChatId: secretChatId ?? this.secretChatId,
  userId: userId ?? this.userId,
);