Add hashtag awareness to friendica search client

merge-requests/67/head
Hank Grabowski 2024-12-21 21:35:23 -05:00
rodzic 71a15990e2
commit ebdbf1f9e9
1 zmienionych plików z 8 dodań i 8 usunięć

Wyświetl plik

@ -7,7 +7,7 @@ class PagingData {
final int? offset;
final int limit;
PagingData({
const PagingData({
this.minId,
this.maxId,
this.sinceId,
@ -63,13 +63,13 @@ class PagingData {
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is PagingData &&
runtimeType == other.runtimeType &&
minId == other.minId &&
maxId == other.maxId &&
sinceId == other.sinceId &&
offset == other.offset &&
limit == other.limit;
other is PagingData &&
runtimeType == other.runtimeType &&
minId == other.minId &&
maxId == other.maxId &&
sinceId == other.sinceId &&
offset == other.offset &&
limit == other.limit;
@override
int get hashCode =>