mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-26 03:56:45 +08:00
10 lines
158 B
Dart
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?,
|
|
);
|
|
}
|