copyWith method

CloseSecretChat copyWith({
  1. int? secretChatId,
})

Implementation

CloseSecretChat copyWith({
  int? secretChatId,
}) => CloseSecretChat(
  secretChatId: secretChatId ?? this.secretChatId,
);