MyFhrData class
A data model representing fetal heart rate (FHR) and related monitoring values.
The MyFhrData class stores real-time readings from a fetal monitoring device,
including FHR channels, uterine contraction (toco), fetal movement (afm, fm),
signal quality flags, and device status indicators.
Example usage:
final data = MyFhrData();
data.fhr1 = 140;
data.toco = 20;
print(data.fhrSignal);
Constructors
Properties
- afm ↔ int
-
getter/setter pair
- afmFlag ↔ int
-
getter/setter pair
- devicePower ↔ int
-
getter/setter pair
- docFlag ↔ int
-
getter/setter pair
- fhr1 ↔ int
-
getter/setter pair
- fhr2 ↔ int
-
getter/setter pair
- fhrSignal ↔ int
-
getter/setter pair
- fmFlag ↔ int
-
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- isHaveAfm ↔ int
-
getter/setter pair
- isHaveFhr1 ↔ int
-
getter/setter pair
- isHaveFhr2 ↔ int
-
getter/setter pair
- isHaveToco ↔ int
-
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- toco ↔ int
-
getter/setter pair
- tocoFlag ↔ int
-
getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited