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
21 lines
686 B
Dart
21 lines
686 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'layer_config.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
LayerConfig _$LayerConfigFromJson(Map<String, dynamic> json) => LayerConfig(
|
|
// tags: json['tags'] == null
|
|
// ? null
|
|
// : Tags.fromJson(json['tags'] as Map<String, dynamic>),
|
|
isCritical: json['is_critical'] as bool?,
|
|
);
|
|
|
|
Map<String, dynamic> _$LayerConfigToJson(LayerConfig instance) =>
|
|
<String, dynamic>{
|
|
// 'tags': instance.tags,
|
|
'is_critical': instance.isCritical,
|
|
};
|