copyWith method

ChatCredentialsRow copyWith({
  1. String? chatId,
  2. String? credentials,
})

Implementation

ChatCredentialsRow copyWith({String? chatId, String? credentials}) =>
    ChatCredentialsRow(
      chatId: chatId ?? this.chatId,
      credentials: credentials ?? this.credentials,
    );