copyWith method

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

Implementation

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