Files
PiliPlus/lib/models_new/space/space/night.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

10 lines
166 B
Dart

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