* opt: linter

* tweaks

* opt: TopImage

* update

* remove repaintBoundary [skip ci]

---------

Co-authored-by: dom <githubaccount56556@proton.me>
This commit is contained in:
My-Responsitories
2026-03-12 15:45:18 +08:00
committed by GitHub
parent 99128b2641
commit 6cda3a1880
25 changed files with 237 additions and 323 deletions

View File

@@ -482,7 +482,7 @@ abstract final class MemberHttp {
}
}
static Future<LoadingState<Null>> specialAction({
static Future<LoadingState<void>> specialAction({
int? fid,
bool isAdd = true,
}) async {
@@ -502,7 +502,7 @@ abstract final class MemberHttp {
}
// 设置分组
static Future<LoadingState<Null>> addUsers(String fids, String tagids) async {
static Future<LoadingState<void>> addUsers(String fids, String tagids) async {
final res = await Request().post(
Api.addUsers,
queryParameters: {
@@ -555,7 +555,7 @@ abstract final class MemberHttp {
}
}
static Future<LoadingState<Null>> createFollowTag(Object tagName) async {
static Future<LoadingState<void>> createFollowTag(Object tagName) async {
final res = await Request().post(
Api.createFollowTag,
queryParameters: {
@@ -575,7 +575,7 @@ abstract final class MemberHttp {
}
}
static Future<LoadingState<Null>> updateFollowTag(
static Future<LoadingState<void>> updateFollowTag(
Object tagid,
Object name,
) async {
@@ -599,7 +599,7 @@ abstract final class MemberHttp {
}
}
static Future<LoadingState<Null>> delFollowTag(Object tagid) async {
static Future<LoadingState<void>> delFollowTag(Object tagid) async {
final res = await Request().post(
Api.delFollowTag,
queryParameters: {