copyWith method

  1. @override
UpdateChatTitle copyWith({
  1. int? chatId,
  2. String? title,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

@override
UpdateChatTitle copyWith({
  int? chatId,
  String? title,
  dynamic extra,
  int? clientId,
}) =>
    UpdateChatTitle(
      chatId: chatId ?? this.chatId,
      title: title ?? this.title,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );