yubioath-flutter/lib/app/models.g.dart
2024-03-08 15:27:33 +01:00

33 lines
925 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'models.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
_$KeyCustomizationImpl _$$KeyCustomizationImplFromJson(
Map<String, dynamic> json) =>
_$KeyCustomizationImpl(
serial: json['serial'] as int,
name: json['name'] as String?,
color: const _ColorConverter().fromJson(json['color'] as int?),
);
Map<String, dynamic> _$$KeyCustomizationImplToJson(
_$KeyCustomizationImpl instance) {
final val = <String, dynamic>{
'serial': instance.serial,
};
void writeNotNull(String key, dynamic value) {
if (value != null) {
val[key] = value;
}
}
writeNotNull('name', instance.name);
writeNotNull('color', const _ColorConverter().toJson(instance.color));
return val;
}