copyWith method

SearchChatRecentLocationMessages copyWith({
  1. int? chatId,
  2. int? limit,
})

Implementation

SearchChatRecentLocationMessages copyWith({
  int? chatId,
  int? limit,
}) =>
    SearchChatRecentLocationMessages(
      chatId: chatId ?? this.chatId,
      limit: limit ?? this.limit,
    );