mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-27 05:45:51 +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:
18
lib/models/space/attention_tip.g.dart
Normal file
18
lib/models/space/attention_tip.g.dart
Normal file
@@ -0,0 +1,18 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'attention_tip.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
AttentionTip _$AttentionTipFromJson(Map<String, dynamic> json) => AttentionTip(
|
||||
cardNum: (json['card_num'] as num?)?.toInt(),
|
||||
tip: json['tip'] as String?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$AttentionTipToJson(AttentionTip instance) =>
|
||||
<String, dynamic>{
|
||||
'card_num': instance.cardNum,
|
||||
'tip': instance.tip,
|
||||
};
|
||||
Reference in New Issue
Block a user