copyWith method

GetGroupsInCommon copyWith({
  1. int? userId,
  2. int? offsetChatId,
  3. int? limit,
})

Implementation

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