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
545 B
Dart
18 lines
545 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'colour.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
Colour _$ColourFromJson(Map<String, dynamic> json) => Colour(
|
|
dark: json['dark'] as String?,
|
|
normal: json['normal'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$ColourToJson(Colour instance) => <String, dynamic>{
|
|
'dark': instance.dark,
|
|
'normal': instance.normal,
|
|
};
|