ReceiveIBI.fromMap constructor
ReceiveIBI.fromMap(
- Map map
Implementation
factory ReceiveIBI.fromMap(Map<dynamic, dynamic> map) {
final double timestamp = map['timestamp'];
final double ibi = map['ibi'];
return ReceiveIBI(timestamp, ibi);
}