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/draw_src.g.dart
Normal file
19
lib/models/space/draw_src.g.dart
Normal file
@@ -0,0 +1,19 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'draw_src.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
DrawSrc _$DrawSrcFromJson(Map<String, dynamic> json) => DrawSrc(
|
||||
srcType: (json['src_type'] as num?)?.toInt(),
|
||||
draw: json['draw'] == null
|
||||
? null
|
||||
: Draw.fromJson(json['draw'] as Map<String, dynamic>),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$DrawSrcToJson(DrawSrc instance) => <String, dynamic>{
|
||||
'src_type': instance.srcType,
|
||||
'draw': instance.draw,
|
||||
};
|
||||
Reference in New Issue
Block a user