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