pizzaplanner/lib/entities/PizzaRecipe/RecipeStep.g.dart

71 lines
1.8 KiB
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'RecipeStep.dart';
// **************************************************************************
// TypeAdapterGenerator
// **************************************************************************
class RecipeStepAdapter extends TypeAdapter<RecipeStep> {
@override
final int typeId = 2;
@override
RecipeStep read(BinaryReader reader) {
final numOfFields = reader.readByte();
final fields = <int, dynamic>{
for (int i = 0; i < numOfFields; i++) reader.readByte(): reader.read(),
};
return RecipeStep(
fields[0] as String,
fields[6] as String,
fields[1] as String,
fields[2] as String,
fields[3] as int,
fields[4] as int,
(fields[7] as List).cast<RecipeSubStep>(),
dateTime: fields[8] as DateTime?,
)
..waitValue = fields[5] as int?
.._completed = fields[9] as bool
..notificationId = fields[10] as int;
}
@override
void write(BinaryWriter writer, RecipeStep obj) {
writer
..writeByte(11)
..writeByte(0)
..write(obj.name)
..writeByte(1)
..write(obj.waitDescription)
..writeByte(2)
..write(obj.waitUnit)
..writeByte(3)
..write(obj.waitMin)
..writeByte(4)
..write(obj.waitMax)
..writeByte(5)
..write(obj.waitValue)
..writeByte(6)
..write(obj.description)
..writeByte(7)
..write(obj.subSteps)
..writeByte(8)
..write(obj.dateTime)
..writeByte(9)
..write(obj._completed)
..writeByte(10)
..write(obj.notificationId);
}
@override
int get hashCode => typeId.hashCode;
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is RecipeStepAdapter &&
runtimeType == other.runtimeType &&
typeId == other.typeId;
}