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
594 B
Dart
20 lines
594 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'purchase_button.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
PurchaseButton _$PurchaseButtonFromJson(Map<String, dynamic> json) =>
|
|
PurchaseButton(
|
|
uri: json['uri'] as String?,
|
|
title: json['title'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$PurchaseButtonToJson(PurchaseButton instance) =>
|
|
<String, dynamic>{
|
|
'uri': instance.uri,
|
|
'title': instance.title,
|
|
};
|