mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 23:42:00 +01:00
22 lines
554 B
Dart
22 lines
554 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'variation.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
Variation _$VariationFromJson(Map<String, dynamic> json) {
|
|
$checkKeys(
|
|
json,
|
|
requiredKeys: const ['id'],
|
|
);
|
|
return Variation(
|
|
id: (json['id'] as num).toInt(),
|
|
);
|
|
}
|
|
|
|
Map<String, dynamic> _$VariationToJson(Variation instance) => <String, dynamic>{
|
|
'id': instance.id,
|
|
};
|