Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-17 18:08:55 +08:00
parent 906c21e252
commit 1d4eabb770
58 changed files with 875 additions and 684 deletions

View File

@@ -4,14 +4,14 @@ part 'entrance_button.g.dart';
@JsonSerializable()
class EntranceButton {
String? uri;
String? title;
String? uri;
String? title;
EntranceButton({this.uri, this.title});
EntranceButton({this.uri, this.title});
factory EntranceButton.fromJson(Map<String, dynamic> json) {
return _$EntranceButtonFromJson(json);
}
factory EntranceButton.fromJson(Map<String, dynamic> json) {
return _$EntranceButtonFromJson(json);
}
Map<String, dynamic> toJson() => _$EntranceButtonToJson(this);
Map<String, dynamic> toJson() => _$EntranceButtonToJson(this);
}