Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-17 18:08:55 +08:00
parent 906c21e252
commit 1d4eabb770
58 changed files with 875 additions and 684 deletions

View File

@@ -4,11 +4,11 @@ part 'night.g.dart';
@JsonSerializable()
class Night {
String? argb;
String? argb;
Night({this.argb});
Night({this.argb});
factory Night.fromJson(Map<String, dynamic> json) => _$NightFromJson(json);
factory Night.fromJson(Map<String, dynamic> json) => _$NightFromJson(json);
Map<String, dynamic> toJson() => _$NightToJson(this);
Map<String, dynamic> toJson() => _$NightToJson(this);
}