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
18 lines
584 B
Dart
18 lines
584 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'size_spec.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
SizeSpec _$SizeSpecFromJson(Map<String, dynamic> json) => SizeSpec(
|
|
width: (json['width'] as num?)?.toDouble(),
|
|
height: (json['height'] as num?)?.toDouble(),
|
|
);
|
|
|
|
Map<String, dynamic> _$SizeSpecToJson(SizeSpec instance) => <String, dynamic>{
|
|
'width': instance.width,
|
|
'height': instance.height,
|
|
};
|