chore: organize imports

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-04 16:27:52 +08:00
parent caa58e9d7d
commit 877732e1e7
212 changed files with 518 additions and 531 deletions

View File

@@ -4,13 +4,13 @@ part 'upper.g.dart';
@JsonSerializable()
class Upper {
int? mid;
String? name;
String? face;
int? mid;
String? name;
String? face;
Upper({this.mid, this.name, this.face});
Upper({this.mid, this.name, this.face});
factory Upper.fromJson(Map<String, dynamic> json) => _$UpperFromJson(json);
factory Upper.fromJson(Map<String, dynamic> json) => _$UpperFromJson(json);
Map<String, dynamic> toJson() => _$UpperToJson(this);
Map<String, dynamic> toJson() => _$UpperToJson(this);
}