mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-31 08:08:19 +08:00
Refactor member page (#3)
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
This commit is contained in:
19
lib/models/space/entrance.g.dart
Normal file
19
lib/models/space/entrance.g.dart
Normal file
@@ -0,0 +1,19 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'entrance.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
Entrance _$EntranceFromJson(Map<String, dynamic> json) => Entrance(
|
||||
icon: json['icon'] as String?,
|
||||
jumpUrl: json['jump_url'] as String?,
|
||||
isShowEntrance: json['is_show_entrance'] as bool?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$EntranceToJson(Entrance instance) => <String, dynamic>{
|
||||
'icon': instance.icon,
|
||||
'jump_url': instance.jumpUrl,
|
||||
'is_show_entrance': instance.isShowEntrance,
|
||||
};
|
||||
Reference in New Issue
Block a user