feat: search member dynamic [wip]

refactor: member search

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2024-11-22 19:03:54 +08:00
parent 57b2f48c72
commit bd46678a26
6 changed files with 373 additions and 217 deletions

View File

@@ -13,7 +13,7 @@ class DynamicsDataModel {
DynamicsDataModel.fromJson(Map<String, dynamic> json) {
hasMore = json['has_more'];
items = json['items']
.map<DynamicItemModel>((e) => DynamicItemModel.fromJson(e))
?.map<DynamicItemModel>((e) => DynamicItemModel.fromJson(e))
.toList();
offset = json['offset'];
}