mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-07-19 01:56:53 +08:00
11
lib/models_new/space/space/colour.dart
Normal file
11
lib/models_new/space/space/colour.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class Colour {
|
||||
String? dark;
|
||||
String? normal;
|
||||
|
||||
Colour({this.dark, this.normal});
|
||||
|
||||
factory Colour.fromJson(Map<String, dynamic> json) => Colour(
|
||||
dark: json['dark'] as String?,
|
||||
normal: json['normal'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user