Files
PiliPlus/lib/models/space/res_native_draw.g.dart
bggRGjQaUbCoE f77088b870 Refactor member page (#3)
* refactor: member page

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip
2024-10-17 11:18:59 +08:00

20 lines
622 B
Dart

// 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,
};