Files
PiliPlus/lib/models_new/space/space/night.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

10 lines
158 B
Dart

class Night {
String? argb;
Night({this.argb});
factory Night.fromJson(Map<String, dynamic> json) => Night(
argb: json['argb'] as String?,
);
}