copyWith method

GetPersonalChatHistory copyWith({
  1. int? userId,
  2. int? limit,
})

Implementation

GetPersonalChatHistory copyWith({int? userId, int? limit}) =>
    GetPersonalChatHistory(
      userId: userId ?? this.userId,
      limit: limit ?? this.limit,
    );