mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
11 lines
208 B
Dart
11 lines
208 B
Dart
class SpaceCheesePage {
|
|
bool? next;
|
|
|
|
SpaceCheesePage({this.next});
|
|
|
|
factory SpaceCheesePage.fromJson(Map<String, dynamic> json) =>
|
|
SpaceCheesePage(
|
|
next: json['next'] as bool?,
|
|
);
|
|
}
|