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