Your commit message here

This commit is contained in:
2025-12-19 22:47:27 -06:00
parent 5d746d694e
commit 464692ce56
21 changed files with 3018 additions and 0 deletions

View File

@@ -29,6 +29,14 @@ class CycleEntryAdapter extends TypeAdapter<CycleEntry> {
hasBreastTenderness: fields[9] as bool,
hasFatigue: fields[10] as bool,
hasAcne: fields[11] as bool,
<<<<<<< HEAD
=======
hasLowerBackPain: fields[22] as bool,
hasConstipation: fields[23] as bool,
hasDiarrhea: fields[24] as bool,
stressLevel: fields[25] as int?,
hasInsomnia: fields[26] as bool,
>>>>>>> 6742220 (Your commit message here)
basalBodyTemperature: fields[12] as double?,
cervicalMucus: fields[13] as CervicalMucusType?,
ovulationTestPositive: fields[14] as bool?,
@@ -45,7 +53,11 @@ class CycleEntryAdapter extends TypeAdapter<CycleEntry> {
@override
void write(BinaryWriter writer, CycleEntry obj) {
writer
<<<<<<< HEAD
..writeByte(22)
=======
..writeByte(27)
>>>>>>> 6742220 (Your commit message here)
..writeByte(0)
..write(obj.id)
..writeByte(1)
@@ -70,6 +82,19 @@ class CycleEntryAdapter extends TypeAdapter<CycleEntry> {
..write(obj.hasFatigue)
..writeByte(11)
..write(obj.hasAcne)
<<<<<<< HEAD
=======
..writeByte(22)
..write(obj.hasLowerBackPain)
..writeByte(23)
..write(obj.hasConstipation)
..writeByte(24)
..write(obj.hasDiarrhea)
..writeByte(25)
..write(obj.stressLevel)
..writeByte(26)
..write(obj.hasInsomnia)
>>>>>>> 6742220 (Your commit message here)
..writeByte(12)
..write(obj.basalBodyTemperature)
..writeByte(13)