mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-27 12:36:27 +08:00
21 lines
471 B
Dart
21 lines
471 B
Dart
class Display {
|
|
String? bgThemeLight;
|
|
String? bgThemeNight;
|
|
String? nftPoster;
|
|
String? nftRaw;
|
|
|
|
Display({
|
|
this.bgThemeLight,
|
|
this.bgThemeNight,
|
|
this.nftPoster,
|
|
this.nftRaw,
|
|
});
|
|
|
|
factory Display.fromJson(Map<String, dynamic> json) => Display(
|
|
bgThemeLight: json['bg_theme_light'] as String?,
|
|
bgThemeNight: json['bg_theme_night'] as String?,
|
|
nftPoster: json['nft_poster'] as String?,
|
|
nftRaw: json['nft_raw'] as String?,
|
|
);
|
|
}
|