EE
Size: a a a
EE
P
ND
EE
Ю
YM
AP
EE
ND
final intEge = ege != null ? int.
tryParse(ege) : null;
final intHeight = height != null ? int.
tryParse(height) : null;
final intCurrentWeight =
currentWeight != null ? int.
tryParse(currentWeight) : null;
PerfectWeightFlow flow;
if (intEge != null && intHeight != null && intCurrentWeight != null) {
flow = PerfectWeightFlow(
ege: intEge,
height: intHeight,
currentWeight: intCurrentWeight,
);
}
final flow = map(
map(ege, int.
tryParse),
map(height, int.
tryParse),
map(currentWeight, int.
tryParse),
PerfectWeightFlow,
);
PerfectWeightFlow <*>
int.
tryParse <<- ege
int.
tryParse <<- height
int.
tryParse <<- currentWeight
ND
EE
ND
EE
YM
ND
YM
EE
ГК
Ю
EE