mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
24 lines
801 B
Dart
24 lines
801 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'space_fav.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
SpaceFav _$SpaceFavFromJson(Map<String, dynamic> json) => SpaceFav(
|
|
code: (json['code'] as num?)?.toInt(),
|
|
message: json['message'] as String?,
|
|
ttl: (json['ttl'] as num?)?.toInt(),
|
|
data: (json['data'] as List<dynamic>?)
|
|
?.map((e) => Datum.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
);
|
|
|
|
Map<String, dynamic> _$SpaceFavToJson(SpaceFav instance) => <String, dynamic>{
|
|
'code': instance.code,
|
|
'message': instance.message,
|
|
'ttl': instance.ttl,
|
|
'data': instance.data,
|
|
};
|