mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +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/res_native_draw.g.dart
Normal file
19
lib/models/space/res_native_draw.g.dart
Normal file
@@ -0,0 +1,19 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'res_native_draw.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
ResNativeDraw _$ResNativeDrawFromJson(Map<String, dynamic> json) =>
|
||||
ResNativeDraw(
|
||||
drawSrc: json['draw_src'] == null
|
||||
? null
|
||||
: DrawSrc.fromJson(json['draw_src'] as Map<String, dynamic>),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$ResNativeDrawToJson(ResNativeDraw instance) =>
|
||||
<String, dynamic>{
|
||||
'draw_src': instance.drawSrc,
|
||||
};
|
||||
Reference in New Issue
Block a user