mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
20 lines
623 B
Dart
20 lines
623 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'label.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
Label _$LabelFromJson(Map<String, dynamic> json) => Label(
|
|
path: json['path'] as String?,
|
|
text: json['text'] as String?,
|
|
labelTheme: json['label_theme'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$LabelToJson(Label instance) => <String, dynamic>{
|
|
'path': instance.path,
|
|
'text': instance.text,
|
|
'label_theme': instance.labelTheme,
|
|
};
|