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

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?,
);
}