21 lines
650 B
Dart
21 lines
650 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'ingredient_model.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
Ingredient _$IngredientFromJson(Map<String, dynamic> json) => Ingredient(
|
|
name: json['name'] as String?,
|
|
quantity: json['quantity'] as int?,
|
|
unit: json['unit'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$IngredientToJson(Ingredient instance) =>
|
|
<String, dynamic>{
|
|
'name': instance.name,
|
|
'quantity': instance.quantity,
|
|
'unit': instance.unit,
|
|
};
|