mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-27 13:55:54 +08:00
20
lib/models_new/space/space/display.dart
Normal file
20
lib/models_new/space/space/display.dart
Normal file
@@ -0,0 +1,20 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user